diff --git a/.env b/.env new file mode 100644 index 00000000..8456d782 --- /dev/null +++ b/.env @@ -0,0 +1 @@ +COMPOSE_FILE=docker-compose.yml:docker-compose.monitoring.yml diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..03cb24a7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +.terraform/**/*.x5 filter=lfs diff=lfs merge=lfs -text diff --git a/.github/workflows/cd-application.yml b/.github/workflows/cd-application.yml new file mode 100644 index 00000000..78af6ee8 --- /dev/null +++ b/.github/workflows/cd-application.yml @@ -0,0 +1,16 @@ +name: CD - Deploy Application Stack +on: + push: + branches: + - deployment + +jobs: + deploy-stack: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Run Docker Compose + run: | + docker compose pull + docker compose up -d diff --git a/.github/workflows/ci-application.yml b/.github/workflows/ci-application.yml new file mode 100644 index 00000000..d2891a4b --- /dev/null +++ b/.github/workflows/ci-application.yml @@ -0,0 +1,52 @@ +name: CI - Build and Push Docker Images +on: + push: + branches: + - integration + +jobs: + build-and-push: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Log in to Docker Hub + run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin + + - name: Build Docker Images + run: | + sudo docker compose build frontend + sudo docker compose build backend + + - name: Pull Dependencies + run: | + sudo docker compose pull db adminer proxy nginx prometheus grafana loki promtail cadvisor + + - name: Tag Docker Images + run: | + sudo docker tag cv-challenge01-frontend:latest otowosamuel/frontend:latest + sudo docker tag cv-challenge01-backend:latest otowosamuel/backend:latest + sudo docker tag postgres:latest otowosamuel/postgres:latest + sudo docker tag adminer:latest otowosamuel/adminer:latest + sudo docker tag jc21/nginx-proxy-manager:latest otowosamuel/nginx-proxy-manager:latest + sudo docker tag nginx:latest otowosamuel/nginx:latest + sudo docker tag prom/prometheus:latest otowosamuel/prometheus:latest + sudo docker tag grafana/grafana:latest otowosamuel/grafana:latest + sudo docker tag grafana/loki:2.8.2 otowosamuel/loki:2.8.2 + sudo docker tag grafana/promtail:2.8.2 otowosamuel/promtail:2.8.2 + sudo docker tag gcr.io/cadvisor/cadvisor:latest otowosamuel/cadvisor:latest + + - name: Push Docker Images + run: | + sudo docker push otowosamuel/frontend:latest + sudo docker push otowosamuel/backend:latest + sudo docker push otowosamuel/postgres:latest + sudo docker push otowosamuel/adminer:latest + sudo docker push otowosamuel/nginx-proxy-manager:latest + sudo docker push otowosamuel/nginx:latest + sudo docker push otowosamuel/prometheus:latest + sudo docker push otowosamuel/grafana:latest + sudo docker push otowosamuel/loki:2.8.2 + sudo docker push otowosamuel/promtail:2.8.2 + sudo docker push otowosamuel/cadvisor:latest diff --git a/.github/workflows/terraform-apply.yml b/.github/workflows/terraform-apply.yml new file mode 100644 index 00000000..07e0dc07 --- /dev/null +++ b/.github/workflows/terraform-apply.yml @@ -0,0 +1,37 @@ +name: Apply Terraform which triggers Ansible + +on: + push: + branches: + - infra_main + +jobs: + apply: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v2 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: eu-north-1 + + - name: Set up Terraform + uses: hashicorp/setup-terraform@v2 + + - name: Terraform Init + run: terraform init + + - name: Refresh Terraform State + run: terraform refresh + + - name: Terraform Plan + run: terraform plan + + - name: Terraform Apply + run: terraform apply -auto-approve + + \ No newline at end of file diff --git a/.github/workflows/terraform-plan.yml b/.github/workflows/terraform-plan.yml new file mode 100644 index 00000000..3248ddd2 --- /dev/null +++ b/.github/workflows/terraform-plan.yml @@ -0,0 +1,33 @@ +name: Terraform Plan and Cost Estimation + +on: + pull_request: + branches: + - infra_main + +jobs: + plan: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v2 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: eu-north-1 + + - name: Set up Terraform + uses: hashicorp/setup-terraform@v2 + + - name: Terraform Init + run: terraform init + + - name: Terraform Plan + run: terraform plan -out=tfplan diff --git a/.github/workflows/terraform-validate.yml b/.github/workflows/terraform-validate.yml new file mode 100644 index 00000000..fec75b6f --- /dev/null +++ b/.github/workflows/terraform-validate.yml @@ -0,0 +1,33 @@ +name: Terraform Validate + +on: + push: + branches: + - infra_features + +jobs: + validate: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v2 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: eu-north-1 + + - name: Set up Terraform + uses: hashicorp/setup-terraform@v2 + with: + terraform_version: 1.5.6 + + - name: Terraform Init + run: terraform init + + - name: Validate Terraform configuration + run: terraform validate + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..083469b0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +# Ignore virtual environment +venv/ + +# Ignore system files +*.pyc +__pycache__/ +.DS_Store diff --git a/ansible_files/config.yml b/ansible_files/config.yml new file mode 100644 index 00000000..27628af8 --- /dev/null +++ b/ansible_files/config.yml @@ -0,0 +1,86 @@ +- hosts: web_servers + become: true + tasks: + - name: Create Docker network named monitoring-network + docker_network: + name: monitoring-network + driver: bridge + + - name: Copy Promtail config + copy: + content: | + server: + http_listen_port: 9080 + grpc_listen_port: 0 + + clients: + - url: http://loki:3100/loki/api/v1/push + + positions: + filename: /tmp/positions.yaml + + scrape_configs: + - job_name: system + static_configs: + - targets: + - localhost + labels: + job: varlogs + __path__: /var/log/*.log + dest: ./promtail-config.yml + + - name: Copy Loki config + copy: + content: | + server: + http_listen_port: 9080 + grpc_listen_port: 0 + + positions: + filename: /tmp/positions.yaml + + clients: + - url: http://loki:3100/loki/api/v1/push + + scrape_configs: + - job_name: system + static_configs: + - targets: + - localhost + labels: + job: varlogs + __path__: /var/log/*log + + - job_name: docker + static_configs: + - targets: + - localhost + labels: + job: docker_logs + __path__: /var/lib/docker/containers/*/*-json.log + dest: ./loki-config.yaml + + - name: Copy Prometheus config + copy: + content: | + global: + scrape_interval: 15s + + scrape_configs: + - job_name: 'prometheus' + metrics_path: "/prometheus/metrics" + static_configs: + - targets: ['prometheus:9090'] + + - job_name: 'grafana' + static_configs: + - targets: ['grafana:3000'] + + - job_name: 'cadvisor' + static_configs: + - targets: ['cadvisor:8080'] + + - job_name: 'loki' + static_configs: + - targets: ['loki:3100'] + dest: ./prometheus.yml \ No newline at end of file diff --git a/ansible_files/dashboard.yml b/ansible_files/dashboard.yml new file mode 100644 index 00000000..dc963710 --- /dev/null +++ b/ansible_files/dashboard.yml @@ -0,0 +1,160 @@ +--- +- hosts: web_servers + become: true + tasks: + + - name: Get the public IP of the server + command: curl -s https://api.ipify.org + register: public_ip + + - name: Set Grafana root URL dynamically + set_fact: + grafana_root_url: "http://{{ public_ip.stdout }}/grafana" + + - name: Obtain Grafana Admin Token + uri: + url: "http://{{ public_ip.stdout }}/grafana/login" + method: POST + headers: + Content-Type: "application/json" + body: | + { + "user": "admin", + "password": "admin" + } + body_format: json + return_content: yes + register: grafana_login_response + + - name: Debug Grafana Login Response + debug: + var: grafana_login_response + + - name: Set the Grafana Session Cookie as a Fact + set_fact: + grafana_session_cookie: "{{ grafana_login_response.cookies.grafana_session }}" + + - name: Configure Prometheus Data Sources + uri: + url: "http://{{ public_ip.stdout }}/grafana/api/datasources" + method: POST + headers: + Cookie: "grafana_session={{ grafana_session_cookie }}" + body: | + { + "name": "Prometheus", + "type": "prometheus", + "url": "http://prometheus:9090/prometheus", + "access": "proxy", + "isDefault": true + } + body_format: json + status_code: 200 + + - name: Configure Loki Data Source + uri: + url: "http://{{ public_ip.stdout }}/grafana/api/datasources" + method: POST + headers: + Content-Type: "application/json" + Cookie: "grafana_session={{ grafana_session_cookie }}" + body: | + { + "name": "Loki", + "type": "loki", + "url": "http://loki:3100", + "access": "proxy" + } + body_format: json + status_code: 200 + + - name: Import cAdvisor Panel with UID 193 + uri: + url: "https://grafana.com/api/dashboards/193/revisions/1/download" + method: GET + headers: + Content-Type: "application/json" + Cookie: "grafana_session={{ grafana_session_cookie }}" + register: cadvisor_panel + + - name: Add cAdvisor Panel to Dashboard + uri: + url: "http://{{ public_ip.stdout }}/grafana/api/dashboards/db" + method: POST + headers: + Content-Type: "application/json" + Cookie: "grafana_session={{ grafana_session_cookie }}" + body: | + { + "dashboard": {{ cadvisor_panel.json }}, + "folder": "Monitoring", + "refresh": "10s", + "timepicker": { + "refresh_intervals": ["5s", "10s", "30s", "1m"] + }, + } + body_format: json + status_code: 200 + + - name: Create New Dashboard and Add Visualization Panel for Loki + uri: + url: "http://{{ public_ip.stdout }}/grafana/api/dashboards/db" + method: POST + headers: + Content-Type: "application/json" + Cookie: "grafana_session={{ grafana_session_cookie }}" + body: | + { + "dashboard": { + "id": null, + "title": "Logging", + "tags": ["Loki", "Prometheus"], + "timezone": "browser", + "panels": [ + { + "type": "timeseries", + "title": "Loki Logs", + "targets": [ + { + "expr": "container_network_receive_errors_total{}", + "refId": "A", + "datasource": { + "type": "loki", + "uid": "loki" + }, + "intervalFactor": 1 + } + ], + "xaxis": { + "mode": "time" + }, + "yaxis": { + "format": "short" + }, + "legend": { + "show": false + }, + "lines": true, + "linewidth": 2, + "nullPointMode": "connected", + "stack": false, + "percentage": false + } + ], + "refresh": "30s" + }, + "folder": "Monitoring" + } + body_format: json + status_code: 200 + + - name: Restart Docker Compose Stack + command: docker compose restart + args: + chdir: ./ + + - name: Ensure Grafana is running + docker_container: + name: grafana + state: started + restart_policy: unless-stopped \ No newline at end of file diff --git a/ansible_files/monitoring.yml b/ansible_files/monitoring.yml new file mode 100644 index 00000000..d3514f60 --- /dev/null +++ b/ansible_files/monitoring.yml @@ -0,0 +1,95 @@ +- hosts: web_servers + become: true + tasks: + - name: Pull Docker Images + docker_image: + name: "{{ item }}" + source: pull + timeout: 600 # Timeout after 600 seconds (10 minutes) + loop: + - otowosamuel/prometheus:latest + - otowosamuel/grafana:latest + - otowosamuel/loki:2.8.2 + - otowosamuel/promtail:2.8.2 + - otowosamuel/cadvisor:latest + async: 300 # Run asynchronously with a max wait of 5 minutes for the task + poll: 0 # Don't wait for the task to complete, let it run in the background + + - name: Get the public IP of the server + command: curl -s https://api.ipify.org + register: public_ip + + - name: Set Grafana root URL dynamically + set_fact: + grafana_root_url: "http://{{ public_ip.stdout }}/grafana" + + - name: Copy Docker Compose File + copy: + content: | + version: '3.8' + services: + prometheus: + image: otowosamuel/prometheus:latest + container_name: prometheus + volumes: + - ./prometheus.yml:/etc/prometheus/prometheus.yml + ports: + - "9090:9090" + command: + - "--config.file=/etc/prometheus/prometheus.yml" + - "--web.external-url=/prometheus" + networks: + - monitoring-network + restart: unless-stopped + + grafana: + image: otowosamuel/grafana:latest + container_name: grafana + ports: + - "3000:3000" + environment: + - GF_SERVER_ROOT_URL={{ grafana_root_url }} + - GF_SERVER_SERVE_FROM_SUB_PATH=true + networks: + - monitoring-network + restart: unless-stopped + + loki: + image: otowosamuel/loki:2.8.2 + container_name: loki + ports: + - "3100:3100" + volumes: + - ./loki-config.yaml:/etc/loki/loki-config.yaml + networks: + - monitoring-network + restart: unless-stopped + + promtail: + image: otowosamuel/promtail:2.8.2 + container_name: promtail + volumes: + - /var/log:/var/log + networks: + - monitoring-network + restart: unless-stopped + + cadvisor: + image: otowosamuel/cadvisor:latest + container_name: cadvisor + ports: + - "8081:8080" + volumes: + - "/:/rootfs:ro" + - "/var/run:/var/run:ro" + - "/sys:/sys:ro" + - "/var/lib/docker/:/var/lib/docker:ro" + - "/dev/disk/:/dev/disk:ro" + networks: + - monitoring-network + restart: unless-stopped + + networks: + monitoring-network: + driver: bridge + dest: ./docker-compose.yml diff --git a/ansible_files/service.yml b/ansible_files/service.yml new file mode 100644 index 00000000..f7cb5afb --- /dev/null +++ b/ansible_files/service.yml @@ -0,0 +1,137 @@ +--- +- hosts: web_servers + become: true + tasks: + - name: Pull Docker Images + docker_image: + name: "{{ item }}" + source: pull + with_items: + - otowosamuel/frontend:latest + - otowosamuel/backend:latest + - otowosamuel/postgres:latest + - otowosamuel/adminer:latest + - otowosamuel/nginx:latest + + - name: Copy ENV file + copy: + content: | + COMPOSE_FILE=docker-compose.yml:docker-compose.monitoring.yml + dest: ./.env + + - name: Copy Nginx Configuration for Routing + copy: + content: | + events { + worker_connections 1024; + } + + http { + server { + listen 80; + server_name _; + + location / { + proxy_pass http://frontend:5173; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + location /api { + proxy_pass http://backend:8000; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + location /docs { + proxy_pass http://backend:8000; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + location /grafana/ { + proxy_pass http://grafana:3000; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + location /prometheus/ { + proxy_pass http://prometheus:9090; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + } + + server { + listen 80; + server_name db.localhost; + + location / { + proxy_pass http://adminer:8080; + } + } + } + dest: ./nginx.conf + + - name: Copy Docker Compose File + copy: + content: | + version: '3.8' + services: + frontend: + image: otowosamuel/frontend:latest + container_name: frontend + ports: + - "5173:5173" + networks: + - monitoring-network + backend: + image: otowosamuel/backend:latest + container_name: backend + ports: + - "8000:8000" + networks: + - monitoring-network + postgres: + image: otowosamuel/postgres:latest + container_name: postgres + environment: + POSTGRES_PASSWORD: your_password + ports: + - "5432:5432" + networks: + - monitoring-network + adminer: + image: otowosamuel/adminer:latest + container_name: adminer + ports: + - "8080:8080" + networks: + - monitoring-network + nginx: + image: otowosamuel/nginx:latest + container_name: nginx + volumes: + - ./nginx.conf:/etc/nginx/nginx.conf + ports: + - "80:80" + - "443:443" + networks: + - monitoring-network + + dest: ./docker-compose.monitoring.yml + + - name: Start Docker Compose Stack + command: docker compose up -d + args: + chdir: ./ \ No newline at end of file diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 00000000..eeeb61c0 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,18 @@ +FROM python:3.11-slim + +WORKDIR /app + +RUN apt-get update && apt-get install -y \ + libpq-dev \ + gcc && \ + apt-get clean + +COPY requirements.txt . + +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +EXPOSE 8000 + +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"] diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 00000000..54177df4 --- /dev/null +++ b/backend/requirements.txt @@ -0,0 +1,34 @@ +annotated-types==0.7.0 +anyio==4.6.2.post1 +click==8.1.7 +exceptiongroup==1.2.2 +fastapi==0.115.5 +greenlet==3.1.1 +h11==0.14.0 +httptools==0.6.4 +idna==3.10 +packaging==24.2 +pipdeptree==2.23.4 +psycopg2-binary==2.9.10 +pydantic==2.10.1 +pydantic_core==2.27.1 +python-dotenv==1.0.1 +PyYAML==6.0.2 +pyjwt==2.6.0 +sniffio==1.3.1 +SQLAlchemy==2.0.36 +starlette==0.41.3 +typing_extensions==4.12.2 +uvicorn==0.32.1 +uvloop==0.21.0 +watchfiles==0.24.0 +websockets==14.1 +email-validator>=2.0.0 +sentry_sdk +sqlmodel +passlib +pydantic-settings +psycopg==3.2.3 +emails +jinja2 +python-multipart \ No newline at end of file diff --git a/delete_vpcs.sh b/delete_vpcs.sh new file mode 100644 index 00000000..4a2cf9ef --- /dev/null +++ b/delete_vpcs.sh @@ -0,0 +1,49 @@ +#!/bin/bash + +REGION="eu-north-1" + +# Get all VPCs +VPC_IDS=$(aws ec2 describe-vpcs --query "Vpcs[*].VpcId" --output text --region $REGION) + +for VPC_ID in $VPC_IDS; do + echo "Deleting resources in VPC: $VPC_ID" + + # Delete NAT Gateways + NAT_GATEWAYS=$(aws ec2 describe-nat-gateways --query "NatGateways[*].NatGatewayId" --output text --region $REGION) + for NAT in $NAT_GATEWAYS; do + aws ec2 delete-nat-gateway --nat-gateway-id $NAT --region $REGION + done + + # Delete Subnets + SUBNETS=$(aws ec2 describe-subnets --filters "Name=vpc-id,Values=$VPC_ID" --query "Subnets[*].SubnetId" --output text --region $REGION) + for SUBNET in $SUBNETS; do + aws ec2 delete-subnet --subnet-id $SUBNET --region $REGION + done + + # Delete Route Tables + ROUTE_TABLES=$(aws ec2 describe-route-tables --filters "Name=vpc-id,Values=$VPC_ID" --query "RouteTables[*].RouteTableId" --output text --region $REGION) + for RT in $ROUTE_TABLES; do + aws ec2 delete-route-table --route-table-id $RT --region $REGION + done + + # Delete Internet Gateways + IGWS=$(aws ec2 describe-internet-gateways --query "InternetGateways[*].InternetGatewayId" --output text --region $REGION) + for IGW in $IGWS; do + aws ec2 detach-internet-gateway --internet-gateway-id $IGW --vpc-id $VPC_ID --region $REGION + aws ec2 delete-internet-gateway --internet-gateway-id $IGW --region $REGION + done + + # Delete Security Groups (excluding default) + SGROUPS=$(aws ec2 describe-security-groups --query "SecurityGroups[?GroupName!='default'].GroupId" --output text --region $REGION) + for SG in $SGROUPS; do + aws ec2 delete-security-group --group-id $SG --region $REGION + done + + # Finally, delete the VPC + aws ec2 delete-vpc --vpc-id $VPC_ID --region $REGION + echo "Deleted VPC: $VPC_ID" +done + +#Delete Key Pair + aws ec2 delete-key-pair --key-name otowok +echo "All VPCs and dependencies deleted successfully!" diff --git a/docker-compose.monitoring.yml b/docker-compose.monitoring.yml new file mode 100644 index 00000000..ebcc97c8 --- /dev/null +++ b/docker-compose.monitoring.yml @@ -0,0 +1,76 @@ +version: "3.3" + +services: + prometheus: + image: prom/prometheus + container_name: prometheus + ports: + - "9090:9090" + volumes: + - ./prometheus.yml:/etc/prometheus/prometheus.yml + networks: + - monitoring-network + restart: unless-stopped + command: + - "--config.file=/etc/prometheus/prometheus.yml" + - "--web.external-url=/prometheus" + + grafana: + image: grafana/grafana + container_name: grafana + ports: + - "3000:3000" + environment: + - GF_SERVER_ROOT_URL=http://otowo.duckdns.org/grafana + - GF_SERVER_SERVE_FROM_SUB_PATH=true + volumes: + - grafana-data:/var/lib/grafana + networks: + - monitoring-network + restart: unless-stopped + + loki: + image: grafana/loki:2.8.2 + container_name: loki + ports: + - "3100:3100" + volumes: + - ./loki-config.yaml:/etc/loki/loki-config.yaml + networks: + - monitoring-network + restart: unless-stopped + + promtail: + image: grafana/promtail:2.8.2 + container_name: promtail + volumes: + - /var/log:/var/log + networks: + - monitoring-network + restart: unless-stopped + + cadvisor: + image: gcr.io/cadvisor/cadvisor:latest + container_name: cadvisor + volumes: + - "/:/rootfs:ro" + - "/var/run:/var/run:ro" + - "/sys:/sys:ro" + - "/var/lib/docker/:/var/lib/docker:ro" + - "/dev/disk/:/dev/disk:ro" + - "/dev/disk/:/dev/disk:ro" + ports: + - "8081:8080" + privileged: true + networks: + - monitoring-network + restart: unless-stopped + + +networks: + monitoring-network: + driver: bridge + +volumes: + grafana-data: + driver: local diff --git a/docker-compose.monitoring.yml.save b/docker-compose.monitoring.yml.save new file mode 100644 index 00000000..eb4875e2 --- /dev/null +++ b/docker-compose.monitoring.yml.save @@ -0,0 +1,76 @@ +version: "3.3" + +services: + prometheus: + image: prom/prometheus + container_name: prometheus + ports: + - "9090:9090" + volumes: + - ./prometheus.yml:/etc/prometheus/prometheus.yml + networks: + - monitoring-network + restart: unless-stopped + command: + - "--config.file=/etc/prometheus/prometheus.yml" + - "--web.external-url=/prometheus" + + grafana: + image: grafana/grafana + container_name: grafana + ports: + - "3000:3000" + environment: + - GF_SERVER_ROOT_URL=http://otowo.chickenkgrafana + - GF_SERVER_SERVE_FROM_SUB_PATH=true + volumes: + - grafana-data:/var/lib/grafana + networks: + - monitoring-network + restart: unless-stopped + + loki: + image: grafana/loki:2.8.2 + container_name: loki + ports: + - "3100:3100" + volumes: + - ./loki-config.yaml:/etc/loki/loki-config.yaml + networks: + - monitoring-network + restart: unless-stopped + + promtail: + image: grafana/promtail:2.8.2 + container_name: promtail + volumes: + - /var/log:/var/log + networks: + - monitoring-network + restart: unless-stopped + + cadvisor: + image: gcr.io/cadvisor/cadvisor:latest + container_name: cadvisor + volumes: + - "/:/rootfs:ro" + - "/var/run:/var/run:ro" + - "/sys:/sys:ro" + - "/var/lib/docker/:/var/lib/docker:ro" + - "/dev/disk/:/dev/disk:ro" + - "/dev/disk/:/dev/disk:ro" + ports: + - "8081:8080" + privileged: true + networks: + - monitoring-network + restart: unless-stopped + + +networks: + monitoring-network: + driver: bridge + +volumes: + grafana-data: + driver: local diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..7307fc07 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,78 @@ +version: '3.3' +services: + frontend: + build: + context: ./frontend + ports: + - "5173:5173" + depends_on: + - backend + networks: + - monitoring-network + + db: + image: postgres:latest + environment: + POSTGRES_USER: app + POSTGRES_PASSWORD: changethis123 + POSTGRES_DB: app + ports: + - "5432:5432" + volumes: + - db_data:/var/lib/postgresql/data + networks: + - monitoring-network + + adminer: + image: adminer:latest + ports: + - "8080:8080" + environment: + ADMINER_DEFAULT_SERVER: db + networks: + - monitoring-network + + proxy: + image: 'jc21/nginx-proxy-manager:latest' + restart: always + ports: + - '8090:81' + - '3001:3000' + - '443:443' + volumes: + - ./proxy/data:/data + - ./proxy/letsencrypt:/etc/letsencrypt + - ./conf_files:/conf_files + - ./entrypoint.sh:/entrypoint.sh + networks: + - monitoring-network + + backend: + build: + context: ./backend + env_file: ./backend/.env + ports: + - "8000:8000" + depends_on: + - db + networks: + - monitoring-network + + nginx: + image: nginx:latest + ports: + - "80:80" + volumes: + - ./nginx/nginx.conf:/etc/nginx/nginx.conf + depends_on: + - frontend + - backend + networks: + - monitoring-network + +networks: + monitoring-network: + driver: bridge + +volumes: + db_data: diff --git a/docker_push.sh b/docker_push.sh new file mode 100644 index 00000000..5922464a --- /dev/null +++ b/docker_push.sh @@ -0,0 +1,41 @@ +#!/bin/bash + +# Build frontend and backend images +echo "Building frontend and backend images..." +sudo docker compose build frontend +sudo docker compose build backend + +# Pull dependencies to ensure latest versions are available locally +echo "Pulling required dependencies..." +sudo docker compose pull db adminer proxy nginx prometheus grafana loki promtail cadvisor + +# Tag images with the appropriate Docker Hub repository +echo "Tagging images..." +sudo docker tag cv-challenge01-frontend:latest otowosamuel/frontend:latest +sudo docker tag cv-challenge01-backend:latest otowosamuel/backend:latest +sudo docker tag postgres:latest otowosamuel/postgres:latest +sudo docker tag adminer:latest otowosamuel/adminer:latest +sudo docker tag jc21/nginx-proxy-manager:latest otowosamuel/nginx-proxy-manager:latest +sudo docker tag nginx:latest otowosamuel/nginx:latest +sudo docker tag prom/prometheus:latest otowosamuel/prometheus:latest +sudo docker tag grafana/grafana:latest otowosamuel/grafana:latest +sudo docker tag grafana/loki:2.8.2 otowosamuel/loki:2.8.2 +sudo docker tag grafana/promtail:2.8.2 otowosamuel/promtail:2.8.2 +sudo docker tag gcr.io/cadvisor/cadvisor:latest otowosamuel/cadvisor:latest + +# Push images to Docker Hub +echo "Pushing images to Docker Hub..." +sudo docker push otowosamuel/frontend:latest +sudo docker push otowosamuel/backend:latest +sudo docker push otowosamuel/postgres:latest +sudo docker push otowosamuel/adminer:latest +sudo docker push otowosamuel/nginx-proxy-manager:latest +sudo docker push otowosamuel/nginx:latest +sudo docker push otowosamuel/prometheus:latest +sudo docker push otowosamuel/grafana:latest +sudo docker push otowosamuel/loki:2.8.2 +sudo docker push otowosamuel/promtail:2.8.2 +sudo docker push otowosamuel/cadvisor:latest + +# Print success message +echo "Okay, All images have been tagged and pushed successfully!" diff --git a/frontend/Dockerfile b/frontend/Dockerfile new file mode 100644 index 00000000..6d2f6ded --- /dev/null +++ b/frontend/Dockerfile @@ -0,0 +1,11 @@ +FROM node:18-alpine3.18 + +WORKDIR /app + +COPY package*.json /app/ + +RUN npm install + +COPY . /app/ + +CMD npm run dev -- --host 0.0.0.0 diff --git a/loki-config.yaml b/loki-config.yaml new file mode 100644 index 00000000..2b8ab394 --- /dev/null +++ b/loki-config.yaml @@ -0,0 +1,26 @@ +server: + http_listen_port: 3100 + grpc_listen_port: 9096 + +positions: + filename: /tmp/positions.yaml + +clients: + - url: http://loki:3100/loki/api/v1/push + +scrape_configs: + - job_name: system + static_configs: + - targets: + - localhost + labels: + job: varlogs + __path__: /var/log/*log + + - job_name: docker + static_configs: + - targets: + - localhost + labels: + job: docker_logs + __path__: /var/lib/docker/containers/*/*-json.log diff --git a/main.tf b/main.tf new file mode 100644 index 00000000..b094a3f1 --- /dev/null +++ b/main.tf @@ -0,0 +1,264 @@ +provider "aws" { + region = "eu-north-1" +} + +resource "aws_vpc" "main" { + cidr_block = "10.0.0.0/16" + enable_dns_support = true + enable_dns_hostnames = true + tags = { + Name = "MainVPC" + } +} + +resource "aws_internet_gateway" "main" { + vpc_id = aws_vpc.main.id + tags = { + Name = "MainInternetGateway" + } +} + +resource "aws_route_table" "main" { + vpc_id = aws_vpc.main.id + route { + cidr_block = "0.0.0.0/0" + gateway_id = aws_internet_gateway.main.id + } + tags = { + Name = "MainRouteTable" + } +} + +resource "aws_route_table_association" "main" { + subnet_id = aws_subnet.main.id + route_table_id = aws_route_table.main.id +} + +resource "aws_subnet" "main" { + vpc_id = aws_vpc.main.id + cidr_block = "10.0.1.0/24" + availability_zone = "eu-north-1a" + map_public_ip_on_launch = true + tags = { + Name = "MainSubnet" + } +} + +resource "aws_security_group" "web_server_sg" { + vpc_id = aws_vpc.main.id + + ingress { + from_port = 22 + to_port = 22 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + ingress { + from_port = 80 + to_port = 80 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + ingress { + from_port = 8090 + to_port = 8090 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + ingress { + from_port = 9090 + to_port = 9090 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + ingress { + from_port = 3000 + to_port = 3000 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + ingress { + from_port = 3100 + to_port = 3100 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + ingress { + from_port = 8081 + to_port = 8081 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + ingress { + from_port = 5173 + to_port = 5173 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + ingress { + from_port = 5432 + to_port = 5432 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + ingress { + from_port = 8080 + to_port = 8080 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + ingress { + from_port = 8000 + to_port = 8000 + protocol = "tcp" + cidr_blocks = ["0.0.0.0/0"] + } + + egress { + from_port = 0 + to_port = 0 + protocol = "-1" + cidr_blocks = ["0.0.0.0/0"] + } + + tags = { + Name = "web_server_sg" + } +} + + +resource "tls_private_key" "web_server_key" { + algorithm = "RSA" + rsa_bits = 2048 +} + +resource "aws_key_pair" "web_server_key" { + key_name = "otowok" + public_key = tls_private_key.web_server_key.public_key_openssh +} + +resource "aws_instance" "web_server" { + ami = "ami-029fb5f3f8aa2663c" + instance_type = "t3.medium" + subnet_id = aws_subnet.main.id + vpc_security_group_ids = [aws_security_group.web_server_sg.id] + key_name = aws_key_pair.web_server_key.key_name + associate_public_ip_address = true + + timeouts { + create = "10m" + } + + tags = { + Name = "web_server" + } + + provisioner "remote-exec" { + connection { + type = "ssh" + user = "ubuntu" + private_key = tls_private_key.web_server_key.private_key_pem + host = self.public_ip + } + + inline = [ + "sudo apt-get update", + "sudo apt-get install -y ca-certificates curl", + "sudo install -m 0755 -d /etc/apt/keyrings", + "curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo tee /etc/apt/keyrings/docker.asc > /dev/null", + "sudo chmod a+r /etc/apt/keyrings/docker.asc", + "echo \"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu $(. /etc/os-release && echo $VERSION_CODENAME) stable\" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null", + "sudo apt-get update -y", + "sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin", + "sudo add-apt-repository ppa:ansible/ansible -y", + "sudo apt update", + "sudo apt install ansible -y" + ] + } + +provisioner "file" { + source = "ansible_files/monitoring.yml" + destination = "/tmp/monitoring.yml" + connection { + type = "ssh" + user = "ubuntu" + private_key = tls_private_key.web_server_key.private_key_pem + host = self.public_ip + } +} + +provisioner "file" { + source = "ansible_files/service.yml" + destination = "/tmp/service.yml" + connection { + type = "ssh" + user = "ubuntu" + private_key = tls_private_key.web_server_key.private_key_pem + host = self.public_ip + } +} + +provisioner "file" { + source = "ansible_files/config.yml" + destination = "/tmp/network.yml" + connection { + type = "ssh" + user = "ubuntu" + private_key = tls_private_key.web_server_key.private_key_pem + host = self.public_ip + } +} + +provisioner "file" { + source = "ansible_files/dashboard.yml" + destination = "/tmp/dashboard.yml" + connection { + type = "ssh" + user = "ubuntu" + private_key = tls_private_key.web_server_key.private_key_pem + host = self.public_ip + } +} + + provisioner "remote-exec" { + connection { + type = "ssh" + user = "ubuntu" + private_key = tls_private_key.web_server_key.private_key_pem + host = self.public_ip + } + + inline = [ + "echo \"[web_servers]\" > /tmp/inventory.ini", + "echo \"${self.public_ip} ansible_ssh_user=ubuntu ansible_ssh_private_key_file='/tmp/private_key.pem'\" >> /tmp/inventory.ini", + "echo '${tls_private_key.web_server_key.private_key_pem}' > /tmp/private_key.pem", + "chmod 600 /tmp/private_key.pem", + "ansible-playbook -i /tmp/inventory.ini /tmp/config.yml -vvv", + "ansible-playbook -i /tmp/inventory.ini /tmp/monitoring.yml -vvv", + "ansible-playbook -i /tmp/inventory.ini /tmp/service.yml -vvv", + "ansible-playbook -i /tmp/inventory.ini /tmp/dashboard.yml -vvv" + ] + } + + + ebs_block_device { + device_name = "/dev/sdh" + volume_size = 20 + volume_type = "gp2" + } + + depends_on = [ + aws_security_group.web_server_sg, + aws_subnet.main + ] +} diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 00000000..b6ea54a2 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,66 @@ +user nginx; +worker_processes auto; + +error_log /var/log/nginx/error.log warn; +pid /var/run/nginx.pid; + +events { + worker_connections 1024; +} + +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + access_log /var/log/nginx/access.log main; + + sendfile on; + keepalive_timeout 65; + + # Upstream configuration for backend + upstream backend { + server backend:8000; + } + + # Upstream configuration for frontend + upstream frontend { + server frontend:5173; + } + + server { + listen 80; + server_name localhost; + + # Route traffic to frontend + location / { + proxy_pass http://frontend; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + # Route traffic to backend API + location /api/ { + proxy_pass http://backend; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + # Optional: Serve Prometheus metrics + location /prometheus/ { + proxy_pass http://prometheus:9090/; + } + + # Optional: Serve Grafana + location /grafana/ { + proxy_pass http://grafana:3000/; + } + } +} diff --git a/nginx/nginx.conf b/nginx/nginx.conf new file mode 100644 index 00000000..b6ea54a2 --- /dev/null +++ b/nginx/nginx.conf @@ -0,0 +1,66 @@ +user nginx; +worker_processes auto; + +error_log /var/log/nginx/error.log warn; +pid /var/run/nginx.pid; + +events { + worker_connections 1024; +} + +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + access_log /var/log/nginx/access.log main; + + sendfile on; + keepalive_timeout 65; + + # Upstream configuration for backend + upstream backend { + server backend:8000; + } + + # Upstream configuration for frontend + upstream frontend { + server frontend:5173; + } + + server { + listen 80; + server_name localhost; + + # Route traffic to frontend + location / { + proxy_pass http://frontend; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + # Route traffic to backend API + location /api/ { + proxy_pass http://backend; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + # Optional: Serve Prometheus metrics + location /prometheus/ { + proxy_pass http://prometheus:9090/; + } + + # Optional: Serve Grafana + location /grafana/ { + proxy_pass http://grafana:3000/; + } + } +} diff --git a/prometheus.yml b/prometheus.yml new file mode 100644 index 00000000..d1b6e4b8 --- /dev/null +++ b/prometheus.yml @@ -0,0 +1,19 @@ +global: + scrape_interval: 15s + +scrape_configs: + - job_name: 'prometheus' + static_configs: + - targets: ['prometheus:9090'] + + - job_name: 'grafana' + static_configs: + - targets: ['grafana:3000'] + + - job_name: 'cadvisor' + static_configs: + - targets: ['cadvisor:8080'] + + - job_name: 'loki' + static_configs: + - targets: ['loki:3100'] \ No newline at end of file diff --git a/promtail-config.yml b/promtail-config.yml new file mode 100644 index 00000000..98b21ad9 --- /dev/null +++ b/promtail-config.yml @@ -0,0 +1,18 @@ +server: + http_listen_port: 9080 + grpc_listen_port: 0 + +clients: + - url: http://loki:3100/loki/api/v1/push + +positions: + filename: /tmp/positions.yaml + +scrape_configs: + - job_name: system + static_configs: + - targets: + - localhost + labels: + job: varlogs + __path__: /var/log/*.log \ No newline at end of file diff --git a/proxy/data/database.sqlite b/proxy/data/database.sqlite new file mode 100644 index 00000000..3c631b45 Binary files /dev/null and b/proxy/data/database.sqlite differ diff --git a/proxy/data/keys.json b/proxy/data/keys.json new file mode 100644 index 00000000..9d0ecd0c --- /dev/null +++ b/proxy/data/keys.json @@ -0,0 +1,4 @@ +{ + "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIEpAIBAAKCAQEAp6AV51KD1RmPtv7KouxChKLvACkR0Pe18ByDa1MxidRht12c\nYyuEA5FbFKDkiMvcIUG8/505mWZJrZUPzi+5n1TxsXQoKPCrF7K5tvNaATNuoZGf\n4uPPpuKqvx6nEQuEE040RZ56GXcuyDVQSxd8EXfYCrCvqTURLriE5K19KxrNBeyF\np/dVEDYnwVotpjVzemUmBj7jyExvj/iUbZXgEmwKuqVJ6LqJJ0KkRKSdXMEyAhlr\nge7ZyLwzOBa5WJZtFKqcbTNF7lwDUyywme2THWi7q6W3LAy13+AqOjeVTK7BE46K\nvGc06q+ShfIWQ6DbmFSSwdX/zR3QUTq51rtaUwIDAQABAoIBAHuqcT5t8/DdoNdi\n9mBoaVKtWiIGKqy+c62ne5VMlTmYRFchauUHD6gKLuXzJWd+7vJiK2txtTLk8eps\nFHMLZqiT5JQEnDRIChG7u6OruXU1WqM8anbblzEJ/OpvVNYQZupPQeUy2+W5tfvi\nyU/9DX1dqzeHzrDJA9oyK2kCTVvkgHV/TH05qxTw+SsOGk2ZHMCPO2VrNFIGOlm0\nxpFgvfWQkGby5rav2s4SnA45ALEq2D+Ou82c9TucTB+yejJ8LfKkdzA4M/rQFxNl\nbJCnbiltm6e8jxx/d8WYzD0Qcc7Ye+PbYExCeb3kG2woaW1CFdWgQBWb8GX4NjZk\nDCfphEECgYEA5tqU/25FeZOXoTJ09RPHArlRYObuFDYhveqm8v73eixCcrMAmg5T\nSVRafM8m/WW03ZqIuyk533aiebpUeBkwC+oOcc8d6G0eVTapc02Lezdsn9H49xBN\n+agsXoPNJNLFnXN8QL/ZkerfTL7X/BZhgk3CfBht06TS91pK3K5CfoMCgYEAueJc\nVP4DA2figmLDLeZAAPv50MRsWEOBY0YKI8bf+LA8+7tsk0DSTP9dTffnoYq94CQN\nX1iQtFe0bWKHt4mOTKvnsPvCzw+NXchS6M4COQSD8c2UnNGYOwVIbh+r2ztz22n8\nAgsxwztLmdiTT7KU8rkwCB+IOgpn3JU/dkAA6/ECgYApJXKDKINnjP/sslKYUAMb\noC46CE8M+S0Aba9+BiXT98mMKg2EZ+M+YbOTJVT8u0EGcoHGYi23f6yr56MgmNSw\nevJCJLle8PwEEi8Xpw2iU5mfzswCNTzAr9HgsrtAwfSJAMl3vPopgOR2CFn0y4Rr\ntjJg7fW9UFZt0gEf3ktpwwKBgQCKLhlRHRqEV59sKZrJ7hW6JZYJeVrJKjVu5Mv4\n2If6SJis0SDfPhqXHmXv5c+MqKSJkINYU3AOf/wiLFKTP3BG0quDR0QDxJ3kD1yC\nr1G7rP2grKBDCxPNHBpBss2ARWvUua6anlO5u8Rxcyve3PQYk01/XGFaNA4NTe1F\nLEMDIQKBgQDV4Iz5YEMWrcHxpCaKAlZzA85to9PTkYeDsiwaR21Yoz9mCXxV9TXX\nGIIGyRCDR8JbiH+hxBiaV6wqwCu3qpK4TH1CZK3teTT7eCYkJDNqCMbngeuIhgvs\nhIKjx9flmT68Z+dnMPHKWZgpCIFesDslcLVqE5eXguAAiU1hy54pqg==\n-----END RSA PRIVATE KEY-----", + "pub": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp6AV51KD1RmPtv7KouxC\nhKLvACkR0Pe18ByDa1MxidRht12cYyuEA5FbFKDkiMvcIUG8/505mWZJrZUPzi+5\nn1TxsXQoKPCrF7K5tvNaATNuoZGf4uPPpuKqvx6nEQuEE040RZ56GXcuyDVQSxd8\nEXfYCrCvqTURLriE5K19KxrNBeyFp/dVEDYnwVotpjVzemUmBj7jyExvj/iUbZXg\nEmwKuqVJ6LqJJ0KkRKSdXMEyAhlrge7ZyLwzOBa5WJZtFKqcbTNF7lwDUyywme2T\nHWi7q6W3LAy13+AqOjeVTK7BE46KvGc06q+ShfIWQ6DbmFSSwdX/zR3QUTq51rta\nUwIDAQAB\n-----END PUBLIC KEY-----" +} \ No newline at end of file diff --git a/proxy/data/logs/fallback_access.log b/proxy/data/logs/fallback_access.log new file mode 100644 index 00000000..e69de29b diff --git a/proxy/data/logs/fallback_access.log.1.gz b/proxy/data/logs/fallback_access.log.1.gz new file mode 100644 index 00000000..f21f26e5 Binary files /dev/null and b/proxy/data/logs/fallback_access.log.1.gz differ diff --git a/proxy/data/logs/fallback_error.log b/proxy/data/logs/fallback_error.log new file mode 100644 index 00000000..e69de29b diff --git a/proxy/data/logs/fallback_error.log.1.gz b/proxy/data/logs/fallback_error.log.1.gz new file mode 100644 index 00000000..f21f26e5 Binary files /dev/null and b/proxy/data/logs/fallback_error.log.1.gz differ diff --git a/proxy/data/logs/letsencrypt-requests_access.log b/proxy/data/logs/letsencrypt-requests_access.log new file mode 100644 index 00000000..e69de29b diff --git a/proxy/data/logs/letsencrypt-requests_error.log b/proxy/data/logs/letsencrypt-requests_error.log new file mode 100644 index 00000000..e69de29b diff --git a/proxy/data/logs/proxy-host-1_access.log b/proxy/data/logs/proxy-host-1_access.log new file mode 100644 index 00000000..96fd2244 --- /dev/null +++ b/proxy/data/logs/proxy-host-1_access.log @@ -0,0 +1,2305 @@ +[02/Dec/2024:22:17:05 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 105.112.124.40] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:17:05 +0000] - 200 200 - GET https otowo.duckdns.org "/src/main.tsx" [Client 105.112.124.40] [Length 4923] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[02/Dec/2024:22:17:06 +0000] - 200 200 - GET https otowo.duckdns.org "/@react-refresh" [Client 105.112.124.40] [Length 73093] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[02/Dec/2024:22:17:06 +0000] - 200 200 - GET https otowo.duckdns.org "/@vite/client" [Client 105.112.124.40] [Length 95079] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[02/Dec/2024:22:17:06 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=2a864b47" [Client 105.112.124.40] [Length 35991] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:17:06 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" [Client 105.112.124.40] [Length 1979] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:17:06 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-router.js?v=99342c17" [Client 105.112.124.40] [Length 4131] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:17:06 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-dom_client.js?v=ad3f0fe0" [Client 105.112.124.40] [Length 1118] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:17:07 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e" [Client 105.112.124.40] [Length 916563] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:17:07 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react.js?v=2b1d1a5d" [Client 105.112.124.40] [Length 219] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:17:07 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routeTree.gen.ts" [Client 105.112.124.40] [Length 8551] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:17:07 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/index.ts" [Client 105.112.124.40] [Length 1163] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:17:07 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/vite/dist/client/env.mjs" [Client 105.112.124.40] [Length 3226] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/@vite/client" +[02/Dec/2024:22:17:07 +0000] - 200 200 - GET https otowo.duckdns.org "/src/theme.tsx" [Client 105.112.124.40] [Length 4532] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:17:07 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-H7PNMJDI.js?v=8e815fc3" [Client 105.112.124.40] [Length 36324] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" +[02/Dec/2024:22:17:07 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-WLNUW44W.js?v=8e815fc3" [Client 105.112.124.40] [Length 107113] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" +[02/Dec/2024:22:17:07 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-QVJRRYHF.js?v=8e815fc3" [Client 105.112.124.40] [Length 77791] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" +[02/Dec/2024:22:17:07 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-TIUEEL27.js?v=8e815fc3" [Client 105.112.124.40] [Length 3168] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-XUSVWCLU.js?v=8e815fc3" [Client 105.112.124.40] [Length 490] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=99342c17" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/ApiError.ts" [Client 105.112.124.40] [Length 2665] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/CancelablePromise.ts" [Client 105.112.124.40] [Length 11940] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/OpenAPI.ts" [Client 105.112.124.40] [Length 4614] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=8e815fc3" [Client 105.112.124.40] [Length 127426] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=99342c17" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/models.ts" [Client 105.112.124.40] [Length 2523] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8e815fc3" [Client 105.112.124.40] [Length 925355] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=ad3f0fe0" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/schemas.ts" [Client 105.112.124.40] [Length 23087] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 105.112.124.40] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/__root.tsx" [Client 105.112.124.40] [Length 4854] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/services.ts" [Client 105.112.124.40] [Length 31514] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/reset-password.tsx" [Client 105.112.124.40] [Length 17124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:17:08 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/recover-password.tsx" [Client 105.112.124.40] [Length 12650] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:17:09 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout.tsx" [Client 105.112.124.40] [Length 6193] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:17:09 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/login.tsx" [Client 105.112.124.40] [Length 18469] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:17:09 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/index.tsx" [Client 105.112.124.40] [Length 5228] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:17:09 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/settings.tsx" [Client 105.112.124.40] [Length 9799] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:17:09 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/admin.tsx" [Client 105.112.124.40] [Length 21681] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:17:09 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/items.tsx" [Client 105.112.124.40] [Length 25279] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:17:09 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/request.ts" [Client 105.112.124.40] [Length 33141] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/services.ts" +[02/Dec/2024:22:17:09 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/NotFound.tsx" [Client 105.112.124.40] [Length 6109] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:22:17:09 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-hook-form.js?v=a9dc3d4a" [Client 105.112.124.40] [Length 72121] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:17:09 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useAuth.ts" [Client 105.112.124.40] [Length 6272] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:17:09 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useCustomToast.ts" [Client 105.112.124.40] [Length 1912] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/utils.ts" [Client 105.112.124.40] [Length 3261] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-3HOHBJ6D.js?v=8e815fc3" [Client 105.112.124.40] [Length 330459] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_icons.js?v=700ef4d4" [Client 105.112.124.40] [Length 37295] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Sidebar.tsx" [Client 105.112.124.40] [Length 21263] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/UserMenu.tsx" [Client 105.112.124.40] [Length 9337] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg?import" [Client 105.112.124.40] [Length 403] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/Appearance.tsx" [Client 105.112.124.40] [Length 7182] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/ChangePassword.tsx" [Client 105.112.124.40] [Length 19915] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteAccount.tsx" [Client 105.112.124.40] [Length 5964] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Navbar.tsx" [Client 105.112.124.40] [Length 7175] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/admin.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/UserInformation.tsx" [Client 105.112.124.40] [Length 22510] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/ActionsMenu.tsx" [Client 105.112.124.40] [Length 11136] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/admin.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/zod.js?v=ebe2f04c" [Client 105.112.124.40] [Length 111603] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/axios.js?v=21f63b6c" [Client 105.112.124.40] [Length 67970] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/core/request.ts" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fi.js?v=b59980ed" [Client 105.112.124.40] [Length 149381] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/SidebarItems.tsx" [Client 105.112.124.40] [Length 8591] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[02/Dec/2024:22:17:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteConfirmation.tsx" [Client 105.112.124.40] [Length 14748] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/UserSettings/DeleteAccount.tsx" +[02/Dec/2024:22:17:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/AddUser.tsx" [Client 105.112.124.40] [Length 32605] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:22:17:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/AddItem.tsx" [Client 105.112.124.40] [Length 18724] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:22:17:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/EditUser.tsx" [Client 105.112.124.40] [Length 31239] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:17:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/EditItem.tsx" [Client 105.112.124.40] [Length 18988] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:17:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/DeleteAlert.tsx" [Client 105.112.124.40] [Length 15745] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:17:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-I6VZC2OZ.js?v=8e815fc3" [Client 105.112.124.40] [Length 5016] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-icons_fi.js?v=b59980ed" +[02/Dec/2024:22:17:12 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_bs.js?v=87f1c93e" [Client 105.112.124.40] [Length 1847548] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:17:13 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fa.js?v=780784ba" [Client 105.112.124.40] [Length 1407409] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +[02/Dec/2024:22:17:15 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_router-devtools.js?v=3278db25" [Client 105.112.124.40] [Length 97708] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:22:17:15 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=91b5b90d" [Client 105.112.124.40] [Length 6949] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:22:17:15 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg" [Client 105.112.124.40] [Length 6309] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:22:17:16 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-PJWIUSLW.js?v=8e815fc3" [Client 105.112.124.40] [Length 93780] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=91b5b90d" +[02/Dec/2024:22:17:16 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 105.112.124.40] [Length 5043] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:22:17:16 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/WIIHGP5G-53S2SJXP.js?v=8e815fc3" [Client 105.112.124.40] [Length 453971] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=91b5b90d" +[02/Dec/2024:22:17:16 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 105.112.124.40] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:22:17:49 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 135.148.100.196] [Length 709] [Gzip -] [Sent-to frontend] "-" "-" +[02/Dec/2024:22:28:14 +0000] - 200 200 - GET https otowo.duckdns.org "/backend" [Client 105.112.124.40] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/@vite/client" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/backend" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/src/main.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/backend" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/@react-refresh" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/backend" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routeTree.gen.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/index.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/src/theme.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/node_modules/vite/dist/client/env.mjs" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/@vite/client" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routes/__root.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routes/reset-password.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routes/recover-password.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routes/login.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routes/_layout.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:15 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routes/_layout/index.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routes/_layout/settings.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routes/_layout/items.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routes/_layout/admin.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/core/ApiError.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/core/CancelablePromise.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/core/OpenAPI.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/models.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/schemas.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/services.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:16 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 105.112.124.40] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/hooks/useAuth.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/Common/NotFound.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/hooks/useCustomToast.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/utils.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg?import" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/Common/Sidebar.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/UserSettings/Appearance.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/Common/UserMenu.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/UserSettings/ChangePassword.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteAccount.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/UserSettings/UserInformation.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/Common/ActionsMenu.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/Common/Navbar.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/core/request.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/services.ts" +[02/Dec/2024:22:28:16 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/Common/SidebarItems.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[02/Dec/2024:22:28:17 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteConfirmation.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/UserSettings/DeleteAccount.tsx" +[02/Dec/2024:22:28:17 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/Admin/EditUser.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:28:17 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/Items/EditItem.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:28:17 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/Common/DeleteAlert.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:28:17 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/Admin/AddUser.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:22:28:17 +0000] - 304 304 - GET https otowo.duckdns.org "/src/components/Items/AddItem.tsx" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:22:28:19 +0000] - 200 200 - GET https otowo.duckdns.org "/backend" [Client 105.112.127.132] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://www.google.com/" +[02/Dec/2024:22:28:19 +0000] - 200 200 - GET https otowo.duckdns.org "/@vite/client" [Client 105.112.127.132] [Length 95079] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/backend" +[02/Dec/2024:22:28:20 +0000] - 200 200 - GET https otowo.duckdns.org "/src/main.tsx" [Client 105.112.127.132] [Length 4923] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/backend" +[02/Dec/2024:22:28:20 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=2a864b47" [Client 105.112.127.132] [Length 35991] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:20 +0000] - 200 200 - GET https otowo.duckdns.org "/@react-refresh" [Client 105.112.127.132] [Length 73093] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/backend" +[02/Dec/2024:22:28:20 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/vite/dist/client/env.mjs" [Client 105.112.127.132] [Length 3226] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/@vite/client" +[02/Dec/2024:22:28:21 +0000] - 304 304 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:22:28:21 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" [Client 105.112.127.132] [Length 1979] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:21 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-router.js?v=99342c17" [Client 105.112.127.132] [Length 4131] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:21 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-dom_client.js?v=ad3f0fe0" [Client 105.112.127.132] [Length 1118] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:21 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routeTree.gen.ts" [Client 105.112.127.132] [Length 8551] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:21 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e" [Client 105.112.127.132] [Length 916563] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:22 +0000] - 200 200 - GET https otowo.duckdns.org "/src/theme.tsx" [Client 105.112.127.132] [Length 4532] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:22 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react.js?v=2b1d1a5d" [Client 105.112.127.132] [Length 219] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:22 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/index.ts" [Client 105.112.127.132] [Length 1163] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:28:22 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-TIUEEL27.js?v=8e815fc3" [Client 105.112.127.132] [Length 3168] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=2a864b47" +[02/Dec/2024:22:28:22 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-QVJRRYHF.js?v=8e815fc3" [Client 105.112.127.132] [Length 77791] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=2a864b47" +[02/Dec/2024:22:28:22 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-WLNUW44W.js?v=8e815fc3" [Client 105.112.127.132] [Length 107113] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" +[02/Dec/2024:22:28:22 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-H7PNMJDI.js?v=8e815fc3" [Client 105.112.127.132] [Length 36324] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" +[02/Dec/2024:22:28:22 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-XUSVWCLU.js?v=8e815fc3" [Client 105.112.127.132] [Length 490] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=99342c17" +[02/Dec/2024:22:28:22 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/__root.tsx" [Client 105.112.127.132] [Length 4854] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:22 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=8e815fc3" [Client 105.112.127.132] [Length 127426] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=99342c17" +[02/Dec/2024:22:28:22 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/reset-password.tsx" [Client 105.112.127.132] [Length 17124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:23 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/recover-password.tsx" [Client 105.112.127.132] [Length 12650] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:23 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/login.tsx" [Client 105.112.127.132] [Length 18469] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:23 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout.tsx" [Client 105.112.127.132] [Length 6193] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:23 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/index.tsx" [Client 105.112.127.132] [Length 5228] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:23 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8e815fc3" [Client 105.112.127.132] [Length 925355] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=ad3f0fe0" +[02/Dec/2024:22:28:23 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/settings.tsx" [Client 105.112.127.132] [Length 9799] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:23 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-3HOHBJ6D.js?v=8e815fc3" [Client 105.112.127.132] [Length 330459] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e" +[02/Dec/2024:22:28:23 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/admin.tsx" [Client 105.112.127.132] [Length 21681] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:23 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/items.tsx" [Client 105.112.127.132] [Length 25279] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:28:23 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/ApiError.ts" [Client 105.112.127.132] [Length 2665] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:23 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/CancelablePromise.ts" [Client 105.112.127.132] [Length 11940] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/OpenAPI.ts" [Client 105.112.127.132] [Length 4614] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/models.ts" [Client 105.112.127.132] [Length 2523] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/schemas.ts" [Client 105.112.127.132] [Length 23087] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/services.ts" [Client 105.112.127.132] [Length 31514] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:28:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/NotFound.tsx" [Client 105.112.127.132] [Length 6109] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:22:28:24 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-hook-form.js?v=a9dc3d4a" [Client 105.112.127.132] [Length 72121] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:28:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useAuth.ts" [Client 105.112.127.132] [Length 6272] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:28:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useCustomToast.ts" [Client 105.112.127.132] [Length 1912] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:28:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/utils.ts" [Client 105.112.127.132] [Length 3261] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:28:24 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg?import" [Client 105.112.127.132] [Length 403] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[02/Dec/2024:22:28:24 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_icons.js?v=700ef4d4" [Client 105.112.127.132] [Length 37295] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[02/Dec/2024:22:28:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Sidebar.tsx" [Client 105.112.127.132] [Length 21263] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:22:28:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/UserMenu.tsx" [Client 105.112.127.132] [Length 9337] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:22:28:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/Appearance.tsx" [Client 105.112.127.132] [Length 7182] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:28:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/ChangePassword.tsx" [Client 105.112.127.132] [Length 19915] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:28:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteAccount.tsx" [Client 105.112.127.132] [Length 5964] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:28:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/UserInformation.tsx" [Client 105.112.127.132] [Length 22510] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:28:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/ActionsMenu.tsx" [Client 105.112.127.132] [Length 11136] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:28:25 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/zod.js?v=ebe2f04c" [Client 105.112.127.132] [Length 111603] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:28:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Navbar.tsx" [Client 105.112.127.132] [Length 7175] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:28:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/request.ts" [Client 105.112.127.132] [Length 33141] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/services.ts" +[02/Dec/2024:22:28:26 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/axios.js?v=21f63b6c" [Client 105.112.127.132] [Length 67970] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/hooks/useAuth.ts" +[02/Dec/2024:22:28:26 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fi.js?v=b59980ed" [Client 105.112.127.132] [Length 149381] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[02/Dec/2024:22:28:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/SidebarItems.tsx" [Client 105.112.127.132] [Length 8591] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[02/Dec/2024:22:28:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteConfirmation.tsx" [Client 105.112.127.132] [Length 14748] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/UserSettings/DeleteAccount.tsx" +[02/Dec/2024:22:28:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/EditUser.tsx" [Client 105.112.127.132] [Length 31239] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:28:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/EditItem.tsx" [Client 105.112.127.132] [Length 18988] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:28:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/DeleteAlert.tsx" [Client 105.112.127.132] [Length 15745] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:28:27 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/AddUser.tsx" [Client 105.112.127.132] [Length 32605] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:22:28:27 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fa.js?v=780784ba" [Client 105.112.127.132] [Length 1407409] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +[02/Dec/2024:22:28:27 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/AddItem.tsx" [Client 105.112.127.132] [Length 18724] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:22:28:27 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-I6VZC2OZ.js?v=8e815fc3" [Client 105.112.127.132] [Length 5016] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-icons_fi.js?v=b59980ed" +[02/Dec/2024:22:28:27 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_bs.js?v=87f1c93e" [Client 105.112.127.132] [Length 1847548] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:28:28 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_router-devtools.js?v=3278db25" [Client 105.112.127.132] [Length 97708] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:22:28:28 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=91b5b90d" [Client 105.112.127.132] [Length 6949] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:22:28:28 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-PJWIUSLW.js?v=8e815fc3" [Client 105.112.127.132] [Length 93780] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=91b5b90d" +[02/Dec/2024:22:28:29 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/WIIHGP5G-53S2SJXP.js?v=8e815fc3" [Client 105.112.127.132] [Length 453971] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=91b5b90d" +[02/Dec/2024:22:28:29 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 105.112.127.132] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:28:29 +0000] - 302 302 - GET https otowo.duckdns.org "/grafana" [Client 105.112.124.40] [Length 37] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:28:31 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/login" [Client 105.112.124.40] [Length 11525] [Gzip 3.88] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:28:31 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/runtime.75f0f98992ae2be072d5.js" [Client 105.112.124.40] [Length 15134] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:31 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/grafana.dark.722d809dba5a31f57d49.css" [Client 105.112.124.40] [Length 87981] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:32 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/8078.a4260b06f1454becf5c9.js" [Client 105.112.124.40] [Length 20200] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:32 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/3719.c065b2e146c4c8347d51.js" [Client 105.112.124.40] [Length 194879] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:32 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/grafana_icon.svg" [Client 105.112.124.40] [Length 5690] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:33 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/4239.c2eca2b0222ddf40980b.js" [Client 105.112.124.40] [Length 920353] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:33 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/6029.0549a3fcb50e73c4b256.js" [Client 105.112.124.40] [Length 409895] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:34 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/app.573d087f3f9bd7c53cd0.js" [Client 105.112.124.40] [Length 866179] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/login" [Client 196.49.26.134] [Length 11525] [Gzip 3.88] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://www.google.com/" +[02/Dec/2024:22:28:35 +0000] - 302 302 - GET https otowo.duckdns.org "/grafana" [Client 102.67.30.228] [Length 37] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://www.google.com/" +[02/Dec/2024:22:28:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/login" [Client 102.67.30.228] [Length 11525] [Gzip 3.88] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://www.google.com/" +[02/Dec/2024:22:28:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/grafana.dark.722d809dba5a31f57d49.css" [Client 196.49.26.134] [Length 87981] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/grafana.dark.722d809dba5a31f57d49.css" [Client 102.67.30.228] [Length 87981] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/322.fcd895da48f9c276a57d.js" [Client 105.112.124.40] [Length 3058673] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/runtime.75f0f98992ae2be072d5.js" [Client 196.49.26.134] [Length 15134] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/runtime.75f0f98992ae2be072d5.js" [Client 102.67.30.228] [Length 15134] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/4239.c2eca2b0222ddf40980b.js" [Client 196.49.26.134] [Length 920353] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/6029.0549a3fcb50e73c4b256.js" [Client 196.49.26.134] [Length 409895] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/6029.0549a3fcb50e73c4b256.js" [Client 102.67.30.228] [Length 409895] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/8078.a4260b06f1454becf5c9.js" [Client 196.49.26.134] [Length 20200] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/app.573d087f3f9bd7c53cd0.js" [Client 196.49.26.134] [Length 866179] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/3719.c065b2e146c4c8347d51.js" [Client 196.49.26.134] [Length 194879] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/8078.a4260b06f1454becf5c9.js" [Client 102.67.30.228] [Length 20200] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/app.573d087f3f9bd7c53cd0.js" [Client 102.67.30.228] [Length 866179] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/3719.c065b2e146c4c8347d51.js" [Client 102.67.30.228] [Length 194879] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9636.b941a14f2c41910ad58c.js" [Client 196.49.26.134] [Length 2875298] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/4239.c2eca2b0222ddf40980b.js" [Client 102.67.30.228] [Length 920353] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/322.fcd895da48f9c276a57d.js" [Client 196.49.26.134] [Length 3058673] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:39 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9636.b941a14f2c41910ad58c.js" [Client 105.112.124.40] [Length 2875298] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:39 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9636.b941a14f2c41910ad58c.js" [Client 102.67.30.228] [Length 2875298] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:39 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/322.fcd895da48f9c276a57d.js" [Client 102.67.30.228] [Length 3058673] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:40 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9521.9d3621a6f245a3ddbdfe.js" [Client 105.112.124.40] [Length 93197] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:40 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9521.9d3621a6f245a3ddbdfe.js" [Client 196.49.26.134] [Length 93197] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:40 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/grafana_icon.svg" [Client 196.49.26.134] [Length 5690] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:40 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/LoginPage.337a8fe1cc0c69e91c08.js" [Client 105.112.124.40] [Length 16082] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/LoginPage.337a8fe1cc0c69e91c08.js" [Client 196.49.26.134] [Length 16082] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Regular.woff2" [Client 105.112.124.40] [Length 108488] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/g8_login_dark.svg" [Client 105.112.124.40] [Length 2361] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9521.9d3621a6f245a3ddbdfe.js" [Client 102.67.30.228] [Length 93197] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/fav32.png" [Client 105.112.124.40] [Length 1118] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/grafana_icon.svg" [Client 102.67.30.228] [Length 5690] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Medium.woff2" [Client 105.112.124.40] [Length 111380] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/g8_login_dark.svg" [Client 196.49.26.134] [Length 2361] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Medium.woff2" [Client 196.49.26.134] [Length 111380] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Regular.woff2" [Client 196.49.26.134] [Length 108488] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/LoginPage.337a8fe1cc0c69e91c08.js" [Client 102.67.30.228] [Length 16082] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:42 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/g8_login_dark.svg" [Client 102.67.30.228] [Length 2361] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:42 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Medium.woff2" [Client 102.67.30.228] [Length 111380] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:42 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Regular.woff2" [Client 102.67.30.228] [Length 108488] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:28:52 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/login" [Client 105.112.124.40] [Length 49] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:12 +0000] - 200 200 - PUT https otowo.duckdns.org "/grafana/api/user/password" [Client 105.112.124.40] [Length 35] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:12 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/" [Client 105.112.124.40] [Length 14375] [Gzip 3.83] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:13 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/plugins/grafana-lokiexplore-app/module.js?_cache=1.0.4" [Client 105.112.124.40] [Length 67568] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:13 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9569.817db115a7df4172282b.js" [Client 105.112.124.40] [Length 27883] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:13 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/6263.a73b1b322df478919fca.js" [Client 105.112.124.40] [Length 15037] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/660.57d6a62355ee16ce8a28.js" [Client 105.112.124.40] [Length 43071] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/DashboardPageProxy.2c83f7d8b1477f13fd57.js" [Client 105.112.124.40] [Length 11549] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/8779.3554bbccc2f934cb55f3.js" [Client 105.112.124.40] [Length 107869] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/7315.93e9d56159a0b43608e5.js" [Client 105.112.124.40] [Length 30529] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/5091.1280b6de16f16fb21665.js" [Client 105.112.124.40] [Length 14714] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/grafana-lokiexplore-app/settings" [Client 105.112.124.40] [Length 2101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/dashboards/home" [Client 105.112.124.40] [Length 1437] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/user/orgs" [Client 105.112.124.40] [Length 47] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=5&type=dash-db" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/icons/unicons/spinner.svg" [Client 105.112.124.40] [Length 813] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/avatar/46d229b033af06a191ff2267bca9ae56" [Client 105.112.124.40] [Length 720] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/grafanaPlugin.abd290ae5943e08a7661.js" [Client 105.112.124.40] [Length 9096] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/alert-rules-toolbar-button.010e6a536193cda52eeb.js" [Client 105.112.124.40] [Length 1448] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/welcomeBanner.50166ab0d8976013cfec.js" [Client 105.112.124.40] [Length 2458] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/dashListPanel.d68c2f1cab6a53912c18.js" [Client 105.112.124.40] [Length 6628] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/gettingStartedPanel.830005e471ef0dce7e2a.js" [Client 105.112.124.40] [Length 10037] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/newsPanel.7a6c4a3b292ad055d222.js" [Client 105.112.124.40] [Length 1514] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:15 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&core=0" [Client 105.112.124.40] [Length 1233] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30&starred=true" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/prometheus/grafana/api/v1/rules?dashboard_uid=null" [Client 105.112.124.40] [Length 41] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:17 +0000] - 302 302 - GET https otowo.duckdns.org "/grafana/" [Client 105.112.127.132] [Length 37] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://www.google.com/" +[02/Dec/2024:22:29:18 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/login" [Client 105.112.127.132] [Length 11525] [Gzip 3.88] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://www.google.com/" +[02/Dec/2024:22:29:18 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:18 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/grafana.dark.722d809dba5a31f57d49.css" [Client 105.112.127.132] [Length 87981] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:19 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/runtime.75f0f98992ae2be072d5.js" [Client 105.112.127.132] [Length 15134] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:19 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:20 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/4239.c2eca2b0222ddf40980b.js" [Client 105.112.127.132] [Length 920353] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:20 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/6029.0549a3fcb50e73c4b256.js" [Client 105.112.127.132] [Length 409895] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:20 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/8078.a4260b06f1454becf5c9.js" [Client 105.112.127.132] [Length 20200] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:20 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/app.573d087f3f9bd7c53cd0.js" [Client 105.112.127.132] [Length 866179] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:20 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/3719.c065b2e146c4c8347d51.js" [Client 105.112.127.132] [Length 194879] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:21 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:21 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9636.b941a14f2c41910ad58c.js" [Client 105.112.127.132] [Length 2875298] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:21 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/322.fcd895da48f9c276a57d.js" [Client 105.112.127.132] [Length 3058673] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:23 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:23 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9521.9d3621a6f245a3ddbdfe.js" [Client 105.112.127.132] [Length 93197] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:23 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/grafana_icon.svg" [Client 105.112.127.132] [Length 5690] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/LoginPage.337a8fe1cc0c69e91c08.js" [Client 105.112.127.132] [Length 16082] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/g8_login_dark.svg" [Client 105.112.127.132] [Length 2361] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Regular.woff2" [Client 105.112.127.132] [Length 108488] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Medium.woff2" [Client 105.112.127.132] [Length 111380] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:26 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" [Client 105.112.124.40] [Length 14375] [Gzip 3.83] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[02/Dec/2024:22:29:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/grafana-lokiexplore-app/settings" [Client 105.112.124.40] [Length 2101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/dashboards/home" [Client 105.112.124.40] [Length 1437] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/user/orgs" [Client 105.112.124.40] [Length 47] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=5&type=dash-db" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:27 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/prometheus/grafana/api/v1/rules?dashboard_uid=null" [Client 105.112.124.40] [Length 41] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30&starred=true" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&core=0" [Client 105.112.124.40] [Length 1233] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:29:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:31 +0000] - 200 200 - GET https otowo.duckdns.org "/login" [Client 105.112.124.40] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:32 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 105.112.124.40] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:36 +0000] - 200 200 - GET https otowo.duckdns.org "/login" [Client 196.49.26.134] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://www.google.com/" +[02/Dec/2024:22:29:37 +0000] - 200 200 - GET https otowo.duckdns.org "/@vite/client" [Client 196.49.26.134] [Length 95079] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:22:29:37 +0000] - 200 200 - GET https otowo.duckdns.org "/src/main.tsx" [Client 196.49.26.134] [Length 4923] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:22:29:38 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=2a864b47" [Client 196.49.26.134] [Length 35991] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:29:38 +0000] - 200 200 - GET https otowo.duckdns.org "/@react-refresh" [Client 196.49.26.134] [Length 73093] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:22:29:38 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/vite/dist/client/env.mjs" [Client 196.49.26.134] [Length 3226] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/@vite/client" +[02/Dec/2024:22:29:38 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" [Client 196.49.26.134] [Length 1979] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:29:38 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e" [Client 196.49.26.134] [Length 916563] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:29:38 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-dom_client.js?v=ad3f0fe0" [Client 196.49.26.134] [Length 1118] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:29:38 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routeTree.gen.ts" [Client 196.49.26.134] [Length 8551] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:29:38 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-router.js?v=99342c17" [Client 196.49.26.134] [Length 4131] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/index.ts" [Client 196.49.26.134] [Length 1163] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/src/theme.tsx" [Client 196.49.26.134] [Length 4532] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react.js?v=2b1d1a5d" [Client 196.49.26.134] [Length 219] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-QVJRRYHF.js?v=8e815fc3" [Client 196.49.26.134] [Length 77791] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=2a864b47" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-WLNUW44W.js?v=8e815fc3" [Client 196.49.26.134] [Length 107113] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-TIUEEL27.js?v=8e815fc3" [Client 196.49.26.134] [Length 3168] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=2a864b47" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-H7PNMJDI.js?v=8e815fc3" [Client 196.49.26.134] [Length 36324] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/__root.tsx" [Client 196.49.26.134] [Length 4854] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/reset-password.tsx" [Client 196.49.26.134] [Length 17124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/recover-password.tsx" [Client 196.49.26.134] [Length 12650] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/login.tsx" [Client 196.49.26.134] [Length 18469] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:29:39 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout.tsx" [Client 196.49.26.134] [Length 6193] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/index.tsx" [Client 196.49.26.134] [Length 5228] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/settings.tsx" [Client 196.49.26.134] [Length 9799] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/items.tsx" [Client 196.49.26.134] [Length 25279] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8e815fc3" [Client 196.49.26.134] [Length 925355] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=ad3f0fe0" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/admin.tsx" [Client 196.49.26.134] [Length 21681] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-XUSVWCLU.js?v=8e815fc3" [Client 196.49.26.134] [Length 490] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=99342c17" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-3HOHBJ6D.js?v=8e815fc3" [Client 196.49.26.134] [Length 330459] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=8e815fc3" [Client 196.49.26.134] [Length 127426] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=99342c17" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/ApiError.ts" [Client 196.49.26.134] [Length 2665] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/CancelablePromise.ts" [Client 196.49.26.134] [Length 11940] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/OpenAPI.ts" [Client 196.49.26.134] [Length 4614] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/models.ts" [Client 196.49.26.134] [Length 2523] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/schemas.ts" [Client 196.49.26.134] [Length 23087] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:29:40 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/services.ts" [Client 196.49.26.134] [Length 31514] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/NotFound.tsx" [Client 196.49.26.134] [Length 6109] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useAuth.ts" [Client 196.49.26.134] [Length 6272] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useCustomToast.ts" [Client 196.49.26.134] [Length 1912] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/src/utils.ts" [Client 196.49.26.134] [Length 3261] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-hook-form.js?v=a9dc3d4a" [Client 196.49.26.134] [Length 72121] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_icons.js?v=700ef4d4" [Client 196.49.26.134] [Length 37295] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg?import" [Client 196.49.26.134] [Length 403] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Sidebar.tsx" [Client 196.49.26.134] [Length 21263] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/UserMenu.tsx" [Client 196.49.26.134] [Length 9337] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/Appearance.tsx" [Client 196.49.26.134] [Length 7182] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/ChangePassword.tsx" [Client 196.49.26.134] [Length 19915] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteAccount.tsx" [Client 196.49.26.134] [Length 5964] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:29:41 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/UserInformation.tsx" [Client 196.49.26.134] [Length 22510] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/zod.js?v=ebe2f04c" [Client 196.49.26.134] [Length 111603] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/ActionsMenu.tsx" [Client 196.49.26.134] [Length 11136] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Navbar.tsx" [Client 196.49.26.134] [Length 7175] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/request.ts" [Client 196.49.26.134] [Length 33141] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/services.ts" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/axios.js?v=21f63b6c" [Client 196.49.26.134] [Length 67970] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/hooks/useAuth.ts" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/SidebarItems.tsx" [Client 196.49.26.134] [Length 8591] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fi.js?v=b59980ed" [Client 196.49.26.134] [Length 149381] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteConfirmation.tsx" [Client 196.49.26.134] [Length 14748] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/UserSettings/DeleteAccount.tsx" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/EditUser.tsx" [Client 196.49.26.134] [Length 31239] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/EditItem.tsx" [Client 196.49.26.134] [Length 18988] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/DeleteAlert.tsx" [Client 196.49.26.134] [Length 15745] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:29:42 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/AddUser.tsx" [Client 196.49.26.134] [Length 32605] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fa.js?v=780784ba" [Client 196.49.26.134] [Length 1407409] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +[02/Dec/2024:22:29:42 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/AddItem.tsx" [Client 196.49.26.134] [Length 18724] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:22:29:43 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_bs.js?v=87f1c93e" [Client 196.49.26.134] [Length 1847548] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:29:43 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-I6VZC2OZ.js?v=8e815fc3" [Client 196.49.26.134] [Length 5016] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-icons_fi.js?v=b59980ed" +[02/Dec/2024:22:29:44 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_router-devtools.js?v=3278db25" [Client 196.49.26.134] [Length 97708] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:22:29:44 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=91b5b90d" [Client 196.49.26.134] [Length 6949] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:22:29:44 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg" [Client 196.49.26.134] [Length 6309] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:22:29:44 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-PJWIUSLW.js?v=8e815fc3" [Client 196.49.26.134] [Length 93780] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=91b5b90d" +[02/Dec/2024:22:29:44 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 196.49.26.134] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:29:45 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/WIIHGP5G-53S2SJXP.js?v=8e815fc3" [Client 196.49.26.134] [Length 453971] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=91b5b90d" +[02/Dec/2024:22:30:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:30:17 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:30:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:30:34 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:30:47 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:19 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:23 +0000] - 302 302 - GET https otowo.duckdns.org "/grafana/login" [Client 105.112.124.40] [Length 32] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:23 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/" [Client 105.112.124.40] [Length 14375] [Gzip 3.83] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/dashboards/home" [Client 105.112.124.40] [Length 1437] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:31:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/user/orgs" [Client 105.112.124.40] [Length 47] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:31:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=5&type=dash-db" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:31:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/grafana-lokiexplore-app/settings" [Client 105.112.124.40] [Length 2101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:31:24 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/prometheus/grafana/api/v1/rules?dashboard_uid=null" [Client 105.112.124.40] [Length 41] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&core=0" [Client 105.112.124.40] [Length 1233] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30&starred=true" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:26 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:27 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:28 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:34 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:34 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:35 +0000] - 302 302 - GET https otowo.duckdns.org "/grafana/login" [Client 105.112.124.40] [Length 32] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/" [Client 105.112.124.40] [Length 14375] [Gzip 3.83] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/grafana-lokiexplore-app/settings" [Client 105.112.124.40] [Length 2101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:31:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/dashboards/home" [Client 105.112.124.40] [Length 1437] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:31:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/user/orgs" [Client 105.112.124.40] [Length 47] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:31:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=5&type=dash-db" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:31:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/prometheus/grafana/api/v1/rules?dashboard_uid=null" [Client 105.112.124.40] [Length 41] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30&starred=true" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&core=0" [Client 105.112.124.40] [Length 1233] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:38 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:40 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:31:46 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:31:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:32:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:32:04 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 105.112.124.40] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:32:09 +0000] - 301 301 - GET https otowo.duckdns.org "/prometheus" [Client 105.112.124.40] [Length 47] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:32:09 +0000] - 302 302 - GET https otowo.duckdns.org "/prometheus/" [Client 105.112.124.40] [Length 40] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:32:09 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/query" [Client 105.112.124.40] [Length 869] [Gzip 2.04] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:32:10 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/assets/index-Bm6642QA.css" [Client 105.112.124.40] [Length 223049] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:22:32:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:32:12 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/assets/index-1SrvQFrd.js" [Client 105.112.124.40] [Length 2571158] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:22:32:13 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/query?query=time%28%29" [Client 105.112.124.40] [Length 124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:22:32:13 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/label/__name__/values" [Client 105.112.124.40] [Length 2975] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:22:32:13 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/favicon.svg" [Client 105.112.124.40] [Length 2777] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:22:32:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:32:19 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/scrape_pools" [Client 105.112.124.40] [Length 116] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/service-discovery" +[02/Dec/2024:22:32:19 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/targets?scrapePool=" [Client 105.112.124.40] [Length 607] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/service-discovery" +[02/Dec/2024:22:32:26 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/targets?state=active&scrapePool=" [Client 105.112.124.40] [Length 589] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:22:32:26 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/scrape_pools" [Client 105.112.124.40] [Length 116] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:22:32:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:32:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:32:58 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:33:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:33:13 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:22:34:44 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" [Client 105.112.124.40] [Length 14372] [Gzip 3.83] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:34:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/dashboards/home" [Client 105.112.124.40] [Length 1437] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:34:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/user/orgs" [Client 105.112.124.40] [Length 47] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:34:45 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:34:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=5&type=dash-db" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:34:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/grafana-lokiexplore-app/settings" [Client 105.112.124.40] [Length 2101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:34:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:34:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/prometheus/grafana/api/v1/rules?dashboard_uid=null" [Client 105.112.124.40] [Length 41] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:34:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&core=0" [Client 105.112.124.40] [Length 1233] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:34:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30&starred=true" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:34:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:34:46 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:34:48 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:34:51 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:34:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:34:55 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:35:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:35:10 +0000] - 304 304 - GET https otowo.duckdns.org "/" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:35:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/main.tsx" [Client 105.112.124.40] [Length 4923] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[02/Dec/2024:22:35:10 +0000] - 304 304 - GET https otowo.duckdns.org "/@vite/client" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[02/Dec/2024:22:35:10 +0000] - 304 304 - GET https otowo.duckdns.org "/@react-refresh" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[02/Dec/2024:22:35:10 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=5dc136cc" [Client 105.112.124.40] [Length 35991] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:35:10 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query.js?v=e8971d4c" [Client 105.112.124.40] [Length 1979] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:35:10 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-router.js?v=4bddc7a6" [Client 105.112.124.40] [Length 4131] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react.js?v=2037cdc3" [Client 105.112.124.40] [Length 219] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-dom_client.js?v=162c2dbe" [Client 105.112.124.40] [Length 1118] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:35:11 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routeTree.gen.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:35:11 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/index.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/theme.tsx" [Client 105.112.124.40] [Length 4532] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:35:11 +0000] - 304 304 - GET https otowo.duckdns.org "/node_modules/vite/dist/client/env.mjs" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/@vite/client" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-H7PNMJDI.js?v=f62d281e" [Client 105.112.124.40] [Length 36324] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=e8971d4c" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-TIUEEL27.js?v=f62d281e" [Client 105.112.124.40] [Length 3168] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=e8971d4c" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-QVJRRYHF.js?v=f62d281e" [Client 105.112.124.40] [Length 77791] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=e8971d4c" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-WLNUW44W.js?v=f62d281e" [Client 105.112.124.40] [Length 107113] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=e8971d4c" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-XUSVWCLU.js?v=f62d281e" [Client 105.112.124.40] [Length 490] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=4bddc7a6" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=f62d281e" [Client 105.112.124.40] [Length 127426] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=4bddc7a6" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/__root.tsx" [Client 105.112.124.40] [Length 4854] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_react.js?v=41546697" [Client 105.112.124.40] [Length 916563] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:22:35:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/reset-password.tsx" [Client 105.112.124.40] [Length 17124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:35:12 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 105.112.124.40] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:35:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/recover-password.tsx" [Client 105.112.124.40] [Length 12650] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:35:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/login.tsx" [Client 105.112.124.40] [Length 18469] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:35:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout.tsx" [Client 105.112.124.40] [Length 6193] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:35:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/index.tsx" [Client 105.112.124.40] [Length 5228] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:35:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/settings.tsx" [Client 105.112.124.40] [Length 9799] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:35:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/items.tsx" [Client 105.112.124.40] [Length 25279] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:35:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/admin.tsx" [Client 105.112.124.40] [Length 21681] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:22:35:12 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/core/ApiError.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:35:12 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/core/OpenAPI.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:35:12 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/core/CancelablePromise.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:35:12 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=f62d281e" [Client 105.112.124.40] [Length 925355] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=162c2dbe" +[02/Dec/2024:22:35:12 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/schemas.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:35:12 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/models.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:35:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/NotFound.tsx" [Client 105.112.124.40] [Length 6109] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:22:35:12 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/services.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:22:35:12 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-hook-form.js?v=e89af03b" [Client 105.112.124.40] [Length 72121] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/recover-password.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useAuth.ts" [Client 105.112.124.40] [Length 6272] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/recover-password.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useCustomToast.ts" [Client 105.112.124.40] [Length 1912] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/recover-password.tsx" +[02/Dec/2024:22:35:13 +0000] - 304 304 - GET https otowo.duckdns.org "/src/utils.ts" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/recover-password.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_icons.js?v=33a16e54" [Client 105.112.124.40] [Length 37295] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[02/Dec/2024:22:35:13 +0000] - 304 304 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg?import" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-Z43TZB5X.js?v=f62d281e" [Client 105.112.124.40] [Length 330459] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@chakra-ui_react.js?v=41546697" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Sidebar.tsx" [Client 105.112.124.40] [Length 21263] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/UserMenu.tsx" [Client 105.112.124.40] [Length 9337] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/Appearance.tsx" [Client 105.112.124.40] [Length 7182] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/ChangePassword.tsx" [Client 105.112.124.40] [Length 19915] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteAccount.tsx" [Client 105.112.124.40] [Length 5964] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/UserInformation.tsx" [Client 105.112.124.40] [Length 22510] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/ActionsMenu.tsx" [Client 105.112.124.40] [Length 11136] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Navbar.tsx" [Client 105.112.124.40] [Length 7175] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/request.ts" [Client 105.112.124.40] [Length 33141] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/services.ts" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/zod.js?v=f33893d2" [Client 105.112.124.40] [Length 111603] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/axios.js?v=91e77559" [Client 105.112.124.40] [Length 67970] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/hooks/useAuth.ts" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/SidebarItems.tsx" [Client 105.112.124.40] [Length 8591] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[02/Dec/2024:22:35:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteConfirmation.tsx" [Client 105.112.124.40] [Length 14748] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/UserSettings/DeleteAccount.tsx" +[02/Dec/2024:22:35:14 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fi.js?v=1f9e58aa" [Client 105.112.124.40] [Length 149381] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[02/Dec/2024:22:35:14 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/EditUser.tsx" [Client 105.112.124.40] [Length 31239] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:35:14 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/EditItem.tsx" [Client 105.112.124.40] [Length 18988] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:35:14 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/DeleteAlert.tsx" [Client 105.112.124.40] [Length 15745] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:35:14 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/AddUser.tsx" [Client 105.112.124.40] [Length 32605] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:22:35:14 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/AddItem.tsx" [Client 105.112.124.40] [Length 18724] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:22:35:14 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-I6VZC2OZ.js?v=f62d281e" [Client 105.112.124.40] [Length 5016] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-icons_fi.js?v=1f9e58aa" +[02/Dec/2024:22:35:15 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_bs.js?v=5bf6ac55" [Client 105.112.124.40] [Length 1847548] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:22:35:15 +0000] - 302 302 - GET https otowo.duckdns.org "/prometheus/" [Client 105.112.124.40] [Length 40] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:35:16 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fa.js?v=8bfac334" [Client 105.112.124.40] [Length 1407409] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +[02/Dec/2024:22:35:16 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/query" [Client 105.112.124.40] [Length 869] [Gzip 2.04] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:35:17 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/assets/index-Bm6642QA.css" [Client 105.112.124.40] [Length 223049] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:22:35:19 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:35:21 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/assets/index-1SrvQFrd.js" [Client 105.112.124.40] [Length 2571158] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:22:35:22 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/label/__name__/values" [Client 105.112.124.40] [Length 2897] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:22:35:22 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/query?query=time%28%29" [Client 105.112.124.40] [Length 124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:22:35:26 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/scrape_pools" [Client 105.112.124.40] [Length 116] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:22:35:26 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/targets?state=active&scrapePool=" [Client 105.112.124.40] [Length 586] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:22:35:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:35:47 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:35:54 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/rules" [Client 105.112.124.40] [Length 101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/rules" +[02/Dec/2024:22:35:58 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/scrape_pools" [Client 105.112.124.40] [Length 116] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/service-discovery" +[02/Dec/2024:22:35:58 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/targets?scrapePool=" [Client 105.112.124.40] [Length 602] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/service-discovery" +[02/Dec/2024:22:36:07 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:36:08 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/targets?state=active&scrapePool=" [Client 105.112.124.40] [Length 584] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:22:36:08 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/scrape_pools" [Client 105.112.124.40] [Length 116] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:22:36:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:36:24 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:22:36:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:36:39 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:36:48 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:37:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:37:15 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:37:24 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/status/buildinfo" [Client 105.112.124.40] [Length 184] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/status" +[02/Dec/2024:22:37:25 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/status/runtimeinfo" [Client 105.112.124.40] [Length 229] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/status" +[02/Dec/2024:22:37:29 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:22:37:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:37:38 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/status" +[02/Dec/2024:22:37:51 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:38:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:38:17 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:38:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:38:39 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/user/auth-tokens/rotate" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:38:45 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:38:58 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:39:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:39:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:39:38 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:39:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:39:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:40:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:40:25 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:40:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:40:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:41:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:41:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:41:25 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:41:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:41:52 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:41:58 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:42:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:42:21 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:42:38 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:42:55 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:42:59 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:43:18 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:43:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:43:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:43:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:43:46 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:43:56 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:44:02 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:44:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:44:32 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:44:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:44:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:45:01 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:45:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:45:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:45:34 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:45:39 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:45:48 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:45:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/7743.0f680902d6a7518337e0.js" [Client 105.112.124.40] [Length 54936] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/6359.4b3bfe33c54801ccbe95.js" [Client 105.112.124.40] [Length 15260] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/Connections.e0eda96e0598ac758584.js" [Client 105.112.124.40] [Length 33613] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/4007.cfd25ba5558e3595af64.js" [Client 105.112.124.40] [Length 99883] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/4753.1482d61804b402f43934.js" [Client 105.112.124.40] [Length 93870] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/errors" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&accesscontrol=true" [Client 105.112.124.40] [Length 42663] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?enabled=1&type=datasource" [Client 105.112.124.40] [Length 16811] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins?includeDeprecated=true" [Client 105.112.124.40] [Length 117431] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/prometheus/img/prometheus_logo.svg" [Client 105.112.124.40] [Length 1075] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/influxdb/img/influxdb_logo.svg" [Client 105.112.124.40] [Length 1937] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/graphite/img/graphite_logo.png" [Client 105.112.124.40] [Length 4452] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/opentsdb/img/opentsdb_logo.png" [Client 105.112.124.40] [Length 9600] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/elasticsearch/img/elasticsearch.svg" [Client 105.112.124.40] [Length 2394] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/loki/img/loki_icon.svg" [Client 105.112.124.40] [Length 6953] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/jaeger/img/jaeger_logo.svg" [Client 105.112.124.40] [Length 35107] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/tempo/img/tempo_logo.svg" [Client 105.112.124.40] [Length 1304] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/zipkin/img/zipkin-logo.svg" [Client 105.112.124.40] [Length 20677] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/mysql/img/mysql_logo.svg" [Client 105.112.124.40] [Length 10863] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/grafana-pyroscope-datasource/img/grafana_pyroscope_icon.svg" [Client 105.112.124.40] [Length 7628] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/parca/img/logo-small.svg" [Client 105.112.124.40] [Length 432] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/mssql/img/sql_server_logo.svg" [Client 105.112.124.40] [Length 22436] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/grafana-postgresql-datasource/img/postgresql_logo.svg" [Client 105.112.124.40] [Length 4464] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/azuremonitor/img/logo.jpg" [Client 105.112.124.40] [Length 9593] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/cloudwatch/img/amazon-web-services.png" [Client 105.112.124.40] [Length 7838] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/cloud-monitoring/img/cloud_monitoring_logo.svg" [Client 105.112.124.40] [Length 2978] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/adobe-analytics.svg" [Client 105.112.124.40] [Length 6069] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/appdynamics.svg" [Client 105.112.124.40] [Length 1032] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/atlassian-statuspage.svg" [Client 105.112.124.40] [Length 920] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/aurora.svg" [Client 105.112.124.40] [Length 1995] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/azure-cosmosdb.svg" [Client 105.112.124.40] [Length 2747] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/azure-devops.png" [Client 105.112.124.40] [Length 39029] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/catchpoint.svg" [Client 105.112.124.40] [Length 38423] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/cloudflare.jpg" [Client 105.112.124.40] [Length 7706] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/cockroachdb.jpg" [Client 105.112.124.40] [Length 19276] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/datadog.png" [Client 105.112.124.40] [Length 8009] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/drone.svg" [Client 105.112.124.40] [Length 1727] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/gitlab.svg" [Client 105.112.124.40] [Length 3591] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/dynatrace.png" [Client 105.112.124.40] [Length 2328] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/honeycomb.png" [Client 105.112.124.40] [Length 6238] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/jira_logo.png" [Client 105.112.124.40] [Length 19192] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/mongodb.svg" [Client 105.112.124.40] [Length 1233] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/netlify.svg" [Client 105.112.124.40] [Length 4106] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/datasources" [Client 105.112.124.40] [Length 442] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:51 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/newrelic.svg" [Client 105.112.124.40] [Length 4215] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/oracle.png" [Client 105.112.124.40] [Length 74402] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/pagerduty.svg" [Client 105.112.124.40] [Length 1626] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/sap_hana.png" [Client 105.112.124.40] [Length 18669] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/salesforce.svg" [Client 105.112.124.40] [Length 18292] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/servicenow.svg" [Client 105.112.124.40] [Length 1674] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.124.40] [Length 33378] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/splunk_logo_128.png" [Client 105.112.124.40] [Length 4019] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/sumo.svg" [Client 105.112.124.40] [Length 1737] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/signalfx-logo.svg" [Client 105.112.124.40] [Length 2418] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/wavefront.svg" [Client 105.112.124.40] [Length 3090] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/zendesk.svg" [Client 105.112.124.40] [Length 348] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/plugins/snowflake.svg" [Client 105.112.124.40] [Length 250054] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/alertmanager/img/logo.svg" [Client 105.112.124.40] [Length 1916] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/access-control/user/actions?reloadcache=true" [Client 105.112.124.40] [Length 3717] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/grafana-testdata-datasource/img/testdata.svg" [Client 105.112.124.40] [Length 1476] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:45:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e?accesscontrol=true" [Client 105.112.124.40] [Length 741] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:45:53 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:45:53 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/prometheus/settings" [Client 105.112.124.40] [Length 1607] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:45:53 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/prometheus" [Client 105.112.124.40] [Length 1328] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:45:53 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/6144.dea67e32f62e0cfd0c9b.js" [Client 105.112.124.40] [Length 22077] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:45:53 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/prometheusPlugin.e05775ba4915b4af3a0f.js" [Client 105.112.124.40] [Length 224] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:45:53 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&accesscontrol=true" [Client 105.112.124.40] [Length 42664] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:45:53 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/prometheus/versions" [Client 105.112.124.40] [Length 822] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:45:53 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/3346.27d8c509370d16b89dae.js" [Client 105.112.124.40] [Length 177121] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:45:53 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/8314.76ef7cead069b612af28.js" [Client 105.112.124.40] [Length 104518] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:45:54 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/prometheus/markdown/README" [Client 105.112.124.40] [Length 292] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:45:54 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/prometheus/markdown/CHANGELOG" [Client 105.112.124.40] [Length 292] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:46:04 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:46:10 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:46:24 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:46:32 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:46:52 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:47:02 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/status" +[02/Dec/2024:22:47:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:47:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:47:43 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:47:48 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:48:09 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:48:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:48:26 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:48:30 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/user/auth-tokens/rotate" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:48:34 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:48:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:49:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:49:13 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:49:15 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:49:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:49:34 +0000] - 200 200 - PUT https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e" [Client 105.112.124.40] [Length 485] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:49:34 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.124.40] [Length 33382] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:49:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e?accesscontrol=true" [Client 105.112.124.40] [Length 782] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:49:35 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e/health" [Client 105.112.124.40] [Length 103] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:49:43 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:49:45 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:49:55 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:49:57 +0000] - 200 200 - PUT https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e" [Client 105.112.124.40] [Length 485] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:49:57 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.124.40] [Length 33420] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:49:58 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e?accesscontrol=true" [Client 105.112.124.40] [Length 782] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:49:58 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e/health" [Client 105.112.124.40] [Length 183] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:50:01 +0000] - 200 200 - PUT https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e" [Client 105.112.124.40] [Length 485] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:50:01 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.124.40] [Length 33420] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:50:01 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e?accesscontrol=true" [Client 105.112.124.40] [Length 782] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:50:02 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e/health" [Client 105.112.124.40] [Length 183] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:50:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:50:15 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:50:28 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:50:45 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:50:52 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:51:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:51:18 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/status" +[02/Dec/2024:22:51:22 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/status" +[02/Dec/2024:22:51:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:51:32 +0000] - 200 200 - PUT https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e" [Client 105.112.124.40] [Length 500] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:51:33 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.124.40] [Length 33404] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:51:33 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e?accesscontrol=true" [Client 105.112.124.40] [Length 797] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:51:34 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query" [Client 23.236.58.169] [Length 98] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:22:51:34 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/status/buildinfo" [Client 23.236.58.169] [Length 184] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:22:51:34 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e/health" [Client 105.112.124.40] [Length 144] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +[02/Dec/2024:22:51:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:51:48 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources" [Client 105.112.124.40] [Length 360] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources" +[02/Dec/2024:22:52:02 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:52:16 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/status" +[02/Dec/2024:22:52:18 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?enabled=1&type=datasource" [Client 105.112.124.40] [Length 16804] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:52:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:52:25 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/datasources" [Client 105.112.124.40] [Length 413] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:52:25 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.124.40] [Length 34963] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:52:26 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/access-control/user/actions?reloadcache=true" [Client 105.112.124.40] [Length 3717] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:22:52:26 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f?accesscontrol=true" [Client 105.112.124.40] [Length 718] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:52:26 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/loki" [Client 105.112.124.40] [Length 1028] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:52:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/loki/settings" [Client 105.112.124.40] [Length 1095] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:52:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&accesscontrol=true" [Client 105.112.124.40] [Length 42663] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:52:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/loki/versions" [Client 105.112.124.40] [Length 709] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:52:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/loki/markdown/README" [Client 105.112.124.40] [Length 127] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:52:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/lokiPlugin.12931648a8f8917976df.js" [Client 105.112.124.40] [Length 180] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:52:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/loki/markdown/CHANGELOG" [Client 105.112.124.40] [Length 127] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:52:28 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/7049.14f2acbbdf538c5a95ca.js" [Client 105.112.124.40] [Length 246852] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:52:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:52:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:52:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:53:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:53:28 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:53:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:53:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:53:56 +0000] - 200 200 - PUT https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f" [Client 105.112.124.40] [Length 432] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:53:56 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.124.40] [Length 34925] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:53:56 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f?accesscontrol=true" [Client 105.112.124.40] [Length 735] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:53:57 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/health" [Client 105.112.124.40] [Length 63] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:22:54:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:54:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/blackcowmoo-googleanalytics-datasource/versions/0.3.0/logos/small" [Client 105.112.124.40] [Length 1598] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-adobeanalytics-datasource/versions/0.1.4-preview/logos/small" [Client 105.112.124.40] [Length 2266] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-aurora-datasource/versions/0.2.4/logos/small" [Client 105.112.124.40] [Length 911] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/alertmanager/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 981] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/aggregations-io-datasource/versions/1.1.1/logos/small" [Client 105.112.124.40] [Length 762] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/vertamedia-clickhouse-datasource/versions/3.2.4/logos/small" [Client 105.112.124.40] [Length 1852] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-amazonprometheus-datasource/versions/1.0.3/logos/small" [Client 105.112.124.40] [Length 696] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/ovhcloudnetworkobservability-akvorado-datasource/versions/1.0.23/logos/small" [Client 105.112.124.40] [Length 29174] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-athena-datasource/versions/2.17.5/logos/small" [Client 105.112.124.40] [Length 2445] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-timestream-datasource/versions/2.9.11/logos/small" [Client 105.112.124.40] [Length 1313] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-redshift-datasource/versions/1.19.0/logos/small" [Client 105.112.124.40] [Length 1830] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/anodot-datasource/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 710] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/hadesarchitect-cassandra-datasource/versions/3.0.0/logos/small" [Client 105.112.124.40] [Length 7354] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-astradb-datasource/versions/0.6.3/logos/small" [Client 105.112.124.40] [Length 12713] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-iot-sitewise-datasource/versions/1.25.0/logos/small" [Client 105.112.124.40] [Length 819] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/dlopes7-appdynamics-datasource/versions/3.10.0/logos/small" [Client 105.112.124.40] [Length 852] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-atlassianstatuspage-datasource/versions/0.1.2-preview/logos/small" [Client 105.112.124.40] [Length 615] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/apache-iotdb-datasource/versions/1.0.0/logos/small" [Client 105.112.124.40] [Length 14641] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/axiomhq-axiom-datasource/versions/0.6.0/logos/small" [Client 105.112.124.40] [Length 700] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-azurecosmosdb-datasource/versions/0.1.4/logos/small" [Client 105.112.124.40] [Length 1337] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/marcusolsson-static-datasource/versions/4.4.0/logos/small" [Client 105.112.124.40] [Length 1472] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-azure-data-explorer-datasource/versions/5.0.7/logos/small" [Client 105.112.124.40] [Length 1380] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-azuredevops-datasource/versions/0.8.6/logos/small" [Client 105.112.124.40] [Length 37746] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-azure-monitor-datasource/versions/1.0.0/logos/small" [Client 105.112.124.40] [Length 7985] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/volkovlabs-rss-datasource/versions/4.2.0/logos/small" [Client 105.112.124.40] [Length 690] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/volkovlabs-grapi-datasource/versions/3.3.0/logos/small" [Client 105.112.124.40] [Length 1156] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/chaosmeshorg-datasource/versions/3.0.0/logos/small" [Client 105.112.124.40] [Length 2309] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-catchpoint-datasource/versions/0.1.4-preview/logos/small" [Client 105.112.124.40] [Length 5015] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/checkmk-cloud-datasource/versions/3.3.0/logos/small" [Client 105.112.124.40] [Length 265] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/cloudwatch/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 7101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-cloudflare-datasource/versions/0.1.2-preview/logos/small" [Client 105.112.124.40] [Length 6334] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-clickhouse-datasource/versions/4.5.1/logos/small" [Client 105.112.124.40] [Length 283] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/computest-cloudwatchalarm-datasource/versions/2.0.1/logos/small" [Client 105.112.124.40] [Length 1967] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/cnos-cnosdb-datasource/versions/0.5.2/logos/small" [Client 105.112.124.40] [Length 23064] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-cockroachdb-datasource/versions/0.1.1/logos/small" [Client 105.112.124.40] [Length 16740] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/cognitedata-datasource/versions/4.2.1/logos/small" [Client 105.112.124.40] [Length 2963] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/criblcloud-search-datasource/versions/1.1.1/logos/small" [Client 105.112.124.40] [Length 680] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/leoswing-comparequeries-datasource/versions/2.0.3/logos/small" [Client 105.112.124.40] [Length 4893] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/marcusolsson-csv-datasource/versions/0.6.21/logos/small" [Client 105.112.124.40] [Length 1119] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-databricks-datasource/versions/1.10.0/logos/small" [Client 105.112.124.40] [Length 436] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-datadog-datasource/versions/3.11.1/logos/small" [Client 105.112.124.40] [Length 7860] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/joshhunt-destiny-datasource/versions/1.0.0/logos/small" [Client 105.112.124.40] [Length 1247] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/devicehive-devicehive-datasource/versions/2.0.2/logos/small" [Client 105.112.124.40] [Length 1950] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-discourse-datasource/versions/2.0.2/logos/small" [Client 105.112.124.40] [Length 740] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-drone-datasource/versions/0.1.1-preview/logos/small" [Client 105.112.124.40] [Length 822] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafadruid-druid-datasource/versions/1.4.1/logos/small" [Client 105.112.124.40] [Length 1048] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-dynamodb-datasource/versions/2.1.1/logos/small" [Client 105.112.124.40] [Length 3962] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/dashboards/home" [Client 105.112.124.40] [Length 1437] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-dynatrace-datasource/versions/3.20.0/logos/small" [Client 105.112.124.40] [Length 2215] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/elasticsearch/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 829] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-falconlogscale-datasource/versions/1.7.6/logos/small" [Client 105.112.124.40] [Length 31414] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/factry-historian-datasource/versions/2.1.0/logos/small" [Client 105.112.124.40] [Length 321] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/clarity89-finnhub-datasource/versions/0.6.0/logos/small" [Client 105.112.124.40] [Length 13571] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/pgollangi-firestore-datasource/versions/0.2.6/logos/small" [Client 105.112.124.40] [Length 421] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/prometheus/grafana/api/v1/rules?dashboard_uid=null" [Client 105.112.124.40] [Length 41] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/influxdata-flightsql-datasource/versions/1.1.1/logos/small" [Client 105.112.124.40] [Length 11085] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&core=0" [Client 105.112.124.40] [Length 1233] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30&starred=true" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/verticle-flowhook-datasource/versions/0.1.3/logos/small" [Client 105.112.124.40] [Length 2808] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/iosb-sensorthings-datasource/versions/0.0.5/logos/small" [Client 105.112.124.40] [Length 3087] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-github-datasource/versions/1.9.2/logos/small" [Client 105.112.124.40] [Length 475] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/arabian9ts-gcpstatus-datasource/versions/0.1.0/logos/small" [Client 105.112.124.40] [Length 745] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-gitlab-datasource/versions/2.3.5/logos/small" [Client 105.112.124.40] [Length 1124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-bigquery-datasource/versions/1.9.3/logos/small" [Client 105.112.124.40] [Length 13507] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/googlecloud-logging-datasource/versions/1.4.1/logos/small" [Client 105.112.124.40] [Length 443] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/stackdriver/versions/1.0.0/logos/small" [Client 105.112.124.40] [Length 1546] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-googlesheets-datasource/versions/1.2.17/logos/small" [Client 105.112.124.40] [Length 609] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/googlecloud-trace-datasource/versions/1.1.0/logos/small" [Client 105.112.124.40] [Length 409] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/mtanda-google-calendar-datasource/versions/1.0.5/logos/small" [Client 105.112.124.40] [Length 609] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-pyroscope-datasource/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 3619] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/graphite/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 4499] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/fifemon-graphql-datasource/versions/1.3.0/logos/small" [Client 105.112.124.40] [Length 753] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/groonga-datasource/versions/1.1.4/logos/small" [Client 105.112.124.40] [Length 982] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/svennergr-hackerone-datasource/versions/1.0.4/logos/small" [Client 105.112.124.40] [Length 423] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/apricote-hcloud-datasource/versions/0.3.0/logos/small" [Client 105.112.124.40] [Length 703] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/needleinajaystack-haystack-datasource/versions/0.0.19/logos/small" [Client 105.112.124.40] [Length 28650] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/highlightinc-highlight-datasource/versions/0.2.1/logos/small" [Client 105.112.124.40] [Length 359] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-honeycomb-datasource/versions/2.7.0/logos/small" [Client 105.112.124.40] [Length 6201] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/isovalent-hubble-datasource/versions/1.0.0/logos/small" [Client 105.112.124.40] [Length 11949] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/ibm-aql-datasource/versions/1.1.0/logos/small" [Client 105.112.124.40] [Length 23691] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/ibm-kql-datasource/versions/1.0.0/logos/small" [Client 105.112.124.40] [Length 23691] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/yesoreyeram-infinity-datasource/versions/2.11.4/logos/small" [Client 105.112.124.40] [Length 4609] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/influxdb/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 1026] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/instana-datasource/versions/4.1.0/logos/small" [Client 105.112.124.40] [Length 15496] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/itrs-obcerv-datasource/versions/2.1.0/logos/small" [Client 105.112.124.40] [Length 704] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/jaeger/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 11850] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-jira-datasource/versions/1.11.0/logos/small" [Client 105.112.124.40] [Length 19150] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/simpod-json-datasource/versions/0.6.5/logos/small" [Client 105.112.124.40] [Length 830] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/marcusolsson-json-datasource/versions/1.3.20/logos/small" [Client 105.112.124.40] [Length 995] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/nagasudhirpulla-api-datasource/versions/1.2.4/logos/small" [Client 105.112.124.40] [Length 737] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/hamedkarbasi93-kafka-datasource/versions/0.2.0/logos/small" [Client 105.112.124.40] [Length 34583] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/aquaqanalytics-kdbbackend-datasource/versions/1.0.0/logos/small" [Client 105.112.124.40] [Length 22685] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/loki/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 1292] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-looker-datasource/versions/0.4.5/logos/small" [Client 105.112.124.40] [Length 483] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/bsull-materialize-datasource/versions/0.1.1/logos/small" [Client 105.112.124.40] [Length 1416] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/manassehzhou-maxcompute-datasource/versions/0.0.2/logos/small" [Client 105.112.124.40] [Length 575] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/mssql/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 10215] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-mock-datasource/versions/0.1.9/logos/small" [Client 105.112.124.40] [Length 1135] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-mqtt-datasource/versions/1.1.0-beta.2/logos/small" [Client 105.112.124.40] [Length 640] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-mongodb-datasource/versions/1.22.2/logos/small" [Client 105.112.124.40] [Length 665] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/dataspex-monetdb-datasource/versions/0.2.0/logos/small" [Client 105.112.124.40] [Length 74340] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/mysql/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 4085] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/kniepdennis-neo4j-datasource/versions/1.3.2/logos/small" [Client 105.112.124.40] [Length 9642] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/netdatacloud-netdata-datasource/versions/2.0.0/logos/small" [Client 105.112.124.40] [Length 240] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-netlify-datasource/versions/0.1.1-preview/logos/small" [Client 105.112.124.40] [Length 2020] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-newrelic-datasource/versions/4.6.5/logos/small" [Client 105.112.124.40] [Length 3390] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/dvelop-odata-datasource/versions/1.1.0/logos/small" [Client 105.112.124.40] [Length 406] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/opengemini-opengemini-datasource/versions/1.1.0/logos/small" [Client 105.112.124.40] [Length 63254] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/gridprotectionalliance-openhistorian-datasource/versions/1.0.3/logos/small" [Client 105.112.124.40] [Length 103207] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/hamedkarbasi93-nodegraphapi-datasource/versions/1.0.1/logos/small" [Client 105.112.124.40] [Length 116106] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-opensearch-datasource/versions/2.22.0/logos/small" [Client 105.112.124.40] [Length 624] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/opentsdb/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 9414] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/optimiz-sevone-datasource/versions/1.0.2/logos/small" [Client 105.112.124.40] [Length 2366] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/oci-logs-datasource/versions/5.0.2/logos/small" [Client 105.112.124.40] [Length 1491] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-oracle-datasource/versions/2.8.13/logos/small" [Client 105.112.124.40] [Length 268] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/oci-metrics-datasource/versions/6.0.3/logos/small" [Client 105.112.124.40] [Length 1491] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-orbit-datasource/versions/0.1.1/logos/small" [Client 105.112.124.40] [Length 30009] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-pagerduty-datasource/versions/1.1.7/logos/small" [Client 105.112.124.40] [Length 737] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/parseable-parseable-datasource/versions/1.2.1/logos/small" [Client 105.112.124.40] [Length 566] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/pixie-pixie-datasource/versions/0.0.9/logos/small" [Client 105.112.124.40] [Length 1240] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/sni-pnp-datasource/versions/2.0.2/logos/small" [Client 105.112.124.40] [Length 1803] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/postgres/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 1976] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/gridprotectionalliance-osisoftpi-datasource/versions/5.1.0/logos/small" [Client 105.112.124.40] [Length 117367] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/prometheus/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 686] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/propeldata-graphql-datasource/versions/1.0.11/logos/small" [Client 105.112.124.40] [Length 1046] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/questdb-questdb-datasource/versions/0.1.4/logos/small" [Client 105.112.124.40] [Length 852] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/camptocamp-prometheus-alertmanager-datasource/versions/2.1.0/logos/small" [Client 105.112.124.40] [Length 19676] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/quickwit-quickwit-datasource/versions/0.4.5/logos/small" [Client 105.112.124.40] [Length 617] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/maormil-rabbitmq-datasource/versions/1.0.0/logos/small" [Client 105.112.124.40] [Length 488] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/redis-datasource/versions/2.2.0/logos/small" [Client 105.112.124.40] [Length 1053] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/runreveal-runreveal-datasource/versions/0.3.3/logos/small" [Client 105.112.124.40] [Length 9234] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-saphana-datasource/versions/1.7.1/logos/small" [Client 105.112.124.40] [Length 18459] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/ccin2p3-riemann-datasource/versions/0.1.6/logos/small" [Client 105.112.124.40] [Length 2632] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-salesforce-datasource/versions/1.7.4/logos/small" [Client 105.112.124.40] [Length 7378] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/scannerdev-scanner-datasource/versions/1.0.0/logos/small" [Client 105.112.124.40] [Length 313] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-sentry-datasource/versions/1.8.5/logos/small" [Client 105.112.124.40] [Length 505] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-servicenow-datasource/versions/2.12.8/logos/small" [Client 105.112.124.40] [Length 827] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/servicenow-cloudobservability-datasource/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 379] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/shorelinesoftware-shoreline-datasource/versions/1.2.1/logos/small" [Client 105.112.124.40] [Length 12584] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/innius-grpc-datasource/versions/1.2.9/logos/small" [Client 105.112.124.40] [Length 702] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/apache-skywalking-datasource/versions/0.1.0/logos/small" [Client 105.112.124.40] [Length 1608] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-snowflake-datasource/versions/1.12.0/logos/small" [Client 105.112.124.40] [Length 102008] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-splunk-datasource/versions/5.2.0/logos/small" [Client 105.112.124.40] [Length 4059] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/flandersmake-sparql-datasource/versions/1.0.0/logos/small" [Client 105.112.124.40] [Length 1613] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/frser-sqlite-datasource/versions/3.5.0/logos/small" [Client 105.112.124.40] [Length 740] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-splunk-monitoring-datasource/versions/1.7.6/logos/small" [Client 105.112.124.40] [Length 637] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-odbc-datasource/versions/1.5.6/logos/small" [Client 105.112.124.40] [Length 8425] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-strava-datasource/versions/1.7.1/logos/small" [Client 105.112.124.40] [Length 271] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/streamr-datasource/versions/1.5.0/logos/small" [Client 105.112.124.40] [Length 2780] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-sumologic-datasource/versions/1.6.2/logos/small" [Client 105.112.124.40] [Length 931] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/fiskaly-surrealdb-datasource/versions/0.3.0/logos/small" [Client 105.112.124.40] [Length 4849] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/fetzerch-sunandmoon-datasource/versions/0.3.3/logos/small" [Client 105.112.124.40] [Length 24180] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-surrealdb-datasource/versions/0.2.4/logos/small" [Client 105.112.124.40] [Length 123762] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/tdengine-datasource/versions/3.7.0/logos/small" [Client 105.112.124.40] [Length 3251] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/tempo/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 744] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-testdata-datasource/versions/10.3.0-pre-6b4337a/logos/small" [Client 105.112.124.40] [Length 567] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/sni-thruk-datasource/versions/2.0.4/logos/small" [Client 105.112.124.40] [Length 638] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/bsull-console-datasource/versions/1.0.1/logos/small" [Client 105.112.124.40] [Length 1348] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/trino-datasource/versions/1.0.7/logos/small" [Client 105.112.124.40] [Length 1720] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/vertica-grafana-datasource/versions/3.0.0/logos/small" [Client 105.112.124.40] [Length 825] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-wavefront-datasource/versions/2.5.5/logos/small" [Client 105.112.124.40] [Length 1509] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/golioth-websocket-datasource/versions/1.0.2/logos/small" [Client 105.112.124.40] [Length 945] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/retrodaredevil-wildgraphql-datasource/versions/1.3.1/logos/small" [Client 105.112.124.40] [Length 443] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-x-ray-datasource/versions/2.10.1/logos/small" [Client 105.112.124.40] [Length 892] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-yugabyte-datasource/versions/0.1.4-preview/logos/small" [Client 105.112.124.40] [Length 736] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/ydbtech-ydb-datasource/versions/0.4.3/logos/small" [Client 105.112.124.40] [Length 1031] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/grafana-zendesk-datasource/versions/0.1.1-preview/logos/small" [Client 105.112.124.40] [Length 257] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/gabrielthomasjacobs-zendesk-datasource/versions/1.1.2/logos/small" [Client 105.112.124.40] [Length 411] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/zipkin/versions/5.0.0/logos/small" [Client 105.112.124.40] [Length 15390] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/add-new-connection" +[02/Dec/2024:22:54:15 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:22:54:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:54:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/DashboardPage.dd76c2118c4a7869e52d.js" [Client 105.112.124.40] [Length 14443] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?utm_source=grafana_gettingstarted" +[02/Dec/2024:22:54:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9666.1121533eca69be2427b3.js" [Client 105.112.124.40] [Length 92350] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:54:37 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:54:44 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/DashboardImport.bba95b5237b4d8acf313.js" [Client 105.112.124.40] [Length 12089] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:54:45 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.124.40] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:54:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:54:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:55:00 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/dashboards/193" [Client 105.112.124.40] [Length 2868] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:00 +0000] - 404 404 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/undefined" [Client 105.112.124.40] [Length 46] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:00 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?query=&type=dash-folder&permission=Edit&limit=1000" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:00 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1000&query=Docker%20monitoring&type=dash-db&folderUIDs=general" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:00 +0000] - 404 404 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/undefined" [Client 105.112.124.40] [Length 46] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:00 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?query=&type=dash-folder&permission=Edit&limit=1000" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:00 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1000&query=Docker%20monitoring&type=dash-db&folderUIDs=general" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:04 +0000] - 404 404 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/undefined" [Client 105.112.124.40] [Length 46] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1000&query=Docker%20monitoring&type=dash-db&folderUIDs=general" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:55:07 +0000] - 404 404 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/undefined" [Client 105.112.124.40] [Length 46] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1000&query=Docker%20monitoring&type=dash-db&folderUIDs=general" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:08 +0000] - 404 404 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/undefined" [Client 105.112.124.40] [Length 46] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1000&query=Docker%20monitoring&type=dash-db&folderUIDs=general" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:18 +0000] - 404 404 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/undefined" [Client 105.112.124.40] [Length 46] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:18 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1000&query=Docker%20monitoring&type=dash-db&folderUIDs=general" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:55:22 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1000&query=Docker%20monitoring&type=dash-db&folderUIDs=general" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:22 +0000] - 404 404 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/undefined" [Client 105.112.124.40] [Length 46] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:55:34 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1000&query=Docker%20monitoring&type=dash-db&folderUIDs=general" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:35 +0000] - 404 404 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/undefined" [Client 105.112.124.40] [Length 46] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:35 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/dashboards/import" [Client 105.112.124.40] [Length 293] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:35 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:55:35 +0000] - 404 404 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/undefined" [Client 105.112.124.40] [Length 46] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1000&query=Docker%20monitoring&type=dash-db&folderUIDs=general" [Client 105.112.124.40] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/folders?parentUid=&page=1&limit=50" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/import" +[02/Dec/2024:22:55:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/assets" [Client 105.112.124.40] [Length 307] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring" +[02/Dec/2024:22:55:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/fe5qx4wabqhvkf" [Client 105.112.124.40] [Length 9445] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring" +[02/Dec/2024:22:55:36 +0000] - 404 404 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/undefined" [Client 105.112.124.40] [Length 46] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring" +[02/Dec/2024:22:55:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1000&query=Docker%20monitoring&type=dash-db&folderUIDs=general" [Client 105.112.124.40] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring" +[02/Dec/2024:22:55:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=50&page=1&type=dash-db&folderUIDs=general" [Client 105.112.124.40] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring" +[02/Dec/2024:22:55:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/prometheus/grafana/api/v1/rules?dashboard_uid=fe5qx4wabqhvkf" [Client 105.112.124.40] [Length 41] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/annotations?from=1733169336982&to=1733180136984&limit=100&matchAny=false&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.124.40] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/94.6acbb36fede37ba2a793.js" [Client 105.112.124.40] [Length 12426] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/6965.0c5239d653c3175969b3.js" [Client 105.112.124.40] [Length 10858] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/3397.e24df0a60941e1abf504.js" [Client 105.112.124.40] [Length 19192] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/timeseriesPanel.ac61c60b21097a7e8bf0.js" [Client 105.112.124.40] [Length 14117] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:36 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 193] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:22:55:36 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 166] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:22:55:36 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 132] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:22:55:36 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR102" [Client 105.112.124.40] [Length 731] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:36 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR100" [Client 105.112.124.40] [Length 600] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:36 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR101" [Client 105.112.124.40] [Length 680] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:36 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7751] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:22:55:36 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 5376] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:22:55:36 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR104" [Client 105.112.124.40] [Length 27573] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:36 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR103" [Client 105.112.124.40] [Length 30801] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:37 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.124.40] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:55:39 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 6434] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:22:55:39 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 6724] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:22:55:39 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR106" [Client 105.112.124.40] [Length 28276] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:22:55:39 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR105" [Client 105.112.124.40] [Length 28651] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:00:55 +0000] - 302 302 - GET https otowo.duckdns.org "/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" [Client 105.112.228.208] [Length 55] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:00:56 +0000] - 302 302 - GET https otowo.duckdns.org "/grafana/user/auth-tokens/rotate" [Client 105.112.228.208] [Length 138] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:00:56 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" [Client 105.112.228.208] [Length 15252] [Gzip 3.98] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:00:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:00:57 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/dashboards/uid/fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 9445] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:00:57 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/user/orgs" [Client 105.112.228.208] [Length 47] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:00:58 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=5&type=dash-db&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:00:58 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/grafana-lokiexplore-app/settings" [Client 105.112.228.208] [Length 2101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:00:58 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/prometheus/grafana/api/v1/rules?dashboard_uid=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 41] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:00:58 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/annotations?from=1733169658667&to=1733180458667&limit=100&matchAny=false&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:00:59 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:01:02 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:01:05 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:01:07 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:01:09 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:01:15 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:01:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:01:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:01:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:01:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/annotations?from=1733169713117&to=1733180513117&limit=100&matchAny=false&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:01:53 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 188] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:01:53 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 143] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:01:53 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 9325] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:01:53 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR101" [Client 105.112.228.208] [Length 731] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:01:53 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 222] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:01:53 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR103" [Client 105.112.228.208] [Length 35017] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:01:53 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR102" [Client 105.112.228.208] [Length 795] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:01:53 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR100" [Client 105.112.228.208] [Length 634] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:01:53 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 6182] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:01:53 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR104" [Client 105.112.228.208] [Length 30631] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:01:54 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7577] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:01:54 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7815] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:01:54 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR106" [Client 105.112.228.208] [Length 31771] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:01:54 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR105" [Client 105.112.228.208] [Length 32108] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:01:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:02:01 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:02:02 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 143] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:02 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR107" [Client 105.112.228.208] [Length 634] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:02 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 188] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:02 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR108" [Client 105.112.228.208] [Length 731] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:02 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 9445] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:02 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 6248] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:02 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 222] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:02 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR110" [Client 105.112.228.208] [Length 35370] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:02 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR109" [Client 105.112.228.208] [Length 795] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:02 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR111" [Client 105.112.228.208] [Length 30885] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:02 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/annotations?from=1733169723121&to=1733180523121&limit=100&matchAny=false&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:03 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7909] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:03 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR112" [Client 105.112.228.208] [Length 32397] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:03 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7676] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:03 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR113" [Client 105.112.228.208] [Length 32062] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:12 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 143] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:12 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 188] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:12 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR115" [Client 105.112.228.208] [Length 731] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:12 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR114" [Client 105.112.228.208] [Length 634] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:12 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 222] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:12 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR116" [Client 105.112.228.208] [Length 795] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:12 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 9445] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:12 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR117" [Client 105.112.228.208] [Length 35370] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:13 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/annotations?from=1733169733133&to=1733180533134&limit=100&matchAny=false&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:13 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 6248] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:13 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR118" [Client 105.112.228.208] [Length 30885] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:13 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7670] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:13 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7903] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:13 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR119" [Client 105.112.228.208] [Length 32397] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:13 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR120" [Client 105.112.228.208] [Length 32062] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:17 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:02:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:02:22 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 143] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:22 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR121" [Client 105.112.228.208] [Length 634] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:22 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 222] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:22 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 188] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:22 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR123" [Client 105.112.228.208] [Length 795] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:22 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR122" [Client 105.112.228.208] [Length 731] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:22 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 9445] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:22 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR124" [Client 105.112.228.208] [Length 35364] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:22 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/annotations?from=1733169743128&to=1733180543128&limit=100&matchAny=false&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:22 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 6248] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:22 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR125" [Client 105.112.228.208] [Length 30885] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:23 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7676] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:23 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7909] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:23 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR127" [Client 105.112.228.208] [Length 32062] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:23 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR126" [Client 105.112.228.208] [Length 32397] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:02:32 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 143] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:32 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR128" [Client 105.112.228.208] [Length 634] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:32 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 188] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:32 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR129" [Client 105.112.228.208] [Length 731] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:32 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 222] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:32 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR130" [Client 105.112.228.208] [Length 795] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:33 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 6315] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:33 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR132" [Client 105.112.228.208] [Length 31140] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:33 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 9580] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:33 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR131" [Client 105.112.228.208] [Length 35725] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:33 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/annotations?from=1733169753122&to=1733180553122&limit=100&matchAny=false&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:33 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 8002] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:33 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR133" [Client 105.112.228.208] [Length 32687] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:33 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7772] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:33 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR134" [Client 105.112.228.208] [Length 32353] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:02:47 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 143] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:47 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 188] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:47 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR136" [Client 105.112.228.208] [Length 731] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:47 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR135" [Client 105.112.228.208] [Length 634] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:47 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 222] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:47 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR137" [Client 105.112.228.208] [Length 795] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:47 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/annotations?from=1733169768074&to=1733180568074&limit=100&matchAny=false&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:47 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 9582] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:47 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 6315] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:47 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR138" [Client 105.112.228.208] [Length 35725] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:47 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR139" [Client 105.112.228.208] [Length 31140] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:48 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7988] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:48 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7769] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:48 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR140" [Client 105.112.228.208] [Length 32677] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:48 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR141" [Client 105.112.228.208] [Length 32353] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 143] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR142" [Client 105.112.228.208] [Length 634] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 188] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR143" [Client 105.112.228.208] [Length 731] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 222] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR144" [Client 105.112.228.208] [Length 795] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 9582] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR145" [Client 105.112.228.208] [Length 35725] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 6315] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR146" [Client 105.112.228.208] [Length 31140] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:57 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/annotations?from=1733169778084&to=1733180578084&limit=100&matchAny=false&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7994] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR147" [Client 105.112.228.208] [Length 32677] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7769] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:02:57 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR148" [Client 105.112.228.208] [Length 32353] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:03:07 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:03:07 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 143] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:03:07 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR149" [Client 105.112.228.208] [Length 634] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:03:07 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 188] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:03:07 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR150" [Client 105.112.228.208] [Length 731] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:03:07 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 222] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:03:07 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 6377] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:03:07 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR151" [Client 105.112.228.208] [Length 795] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:03:07 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 9710] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:03:07 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR153" [Client 105.112.228.208] [Length 31395] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:03:07 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR152" [Client 105.112.228.208] [Length 36079] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:03:07 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/annotations?from=1733169788075&to=1733180588076&limit=100&matchAny=false&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:03:08 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 8108] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:03:08 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR154" [Client 105.112.228.208] [Length 32987] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:03:08 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/query_range" [Client 23.236.58.169] [Length 7856] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:03:08 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=prometheus&requestId=SQR155" [Client 105.112.228.208] [Length 32649] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:03:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/DashboardListPage.725594642c343001b808.js" [Client 105.112.228.208] [Length 32476] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboards" +[02/Dec/2024:23:03:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/folders/general?accesscontrol=true" [Client 105.112.228.208] [Length 991] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboards" +[02/Dec/2024:23:03:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search/sorting" [Client 105.112.228.208] [Length 291] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboards" +[02/Dec/2024:23:03:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/folders?page=1&limit=50" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboards" +[02/Dec/2024:23:03:11 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=50&page=1&type=dash-db&folderUIDs=general" [Client 105.112.228.208] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboards" +[02/Dec/2024:23:03:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:03:27 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:23:03:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:03:35 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:03:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/mixed/img/icn-mixeddatasources.svg" [Client 105.112.228.208] [Length 3487] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:03:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/dashboard/img/icn-reusequeries.svg" [Client 105.112.228.208] [Length 2162] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:03:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/grafana/img/icn-grafanadb.svg" [Client 105.112.228.208] [Length 9628] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:03:36 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/label/__name__/values?start=1733158980&end=1733180640" [Client 23.236.58.169] [Length 3020] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:03:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e/resources/api/v1/label/__name__/values?start=1733158980&end=1733180640" [Client 105.112.228.208] [Length 3020] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:03:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/timeseries/img/icn-timeseries-panel.svg" [Client 105.112.228.208] [Length 1385] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1&firstPanel" +[02/Dec/2024:23:03:37 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/labels" [Client 23.236.58.169] [Length 498] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:03:37 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e/resources/api/v1/labels" [Client 105.112.228.208] [Length 498] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:03:37 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/metadata" [Client 23.236.58.169] [Length 8726] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:03:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e/resources/api/v1/metadata" [Client 105.112.228.208] [Length 8727] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:03:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733159018845000000&end=1733180618845000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:03:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:03:56 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733158999797000000&end=1733180599797000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:04:02 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/loki-query-field.238850b4efef64330a67.js" [Client 105.112.228.208] [Length 22076] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:04:02 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733158999797000000&end=1733180599797000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:04:02 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/630.780594fdd1087a70f1c4.js" [Client 105.112.228.208] [Length 34793] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:04:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/6556.3cb66428afda88cac3e1.js" [Client 105.112.228.208] [Length 15701] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:04:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/8477.5a149b2dc106a4cdce43.js" [Client 105.112.228.208] [Length 934634] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:04:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/react-monaco-editor.5d00e21b6521b3c7086f.js" [Client 105.112.228.208] [Length 330403] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:04:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/1460.3c4e7eda72470dc619a2.js" [Client 105.112.228.208] [Length 1933877] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:04:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/fonts/roboto/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2" [Client 105.112.228.208] [Length 22196] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/d/fe5qx4wabqhvkf/docker-monitoring?orgId=1&from=now-3h&to=now&timezone=browser&refresh=10s" +[02/Dec/2024:23:04:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/1821.fecf3796ddd1c4ae6687.js" [Client 105.112.228.208] [Length 1729] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:04:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/3169.1971add8d896b5a3429e.js" [Client 105.112.228.208] [Length 203712] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:04:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/static/img/codicon.b797181c.ttf" [Client 105.112.228.208] [Length 72504] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:04:09 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733158999797000000&end=1733180599797000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:04:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:04:17 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR157_1" [Client 105.112.228.208] [Length 42641] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:04:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:04:47 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:05:02 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:05:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:05:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:05:53 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:06:13 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:06:20 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:06:27 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:06:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733158999797000000&end=1733180599797000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:06:38 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:06:38 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR158_1" [Client 105.112.228.208] [Length 250135] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:06:42 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR159_1" [Client 105.112.228.208] [Length 250286] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:06:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:07:05 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/scrape_pools" [Client 105.112.228.208] [Length 116] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:07:05 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/targets?state=active&scrapePool=" [Client 105.112.228.208] [Length 587] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:07:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:07:24 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/status" +[02/Dec/2024:23:07:24 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:07:30 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:07:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:07:33 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/tablePanel.f71d0ff07b049008ce88.js" [Client 105.112.228.208] [Length 13659] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:07:34 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/icons/unicons/font.svg" [Client 105.112.228.208] [Length 256] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:07:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:07:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:08:10 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 142.111.105.55] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:08:10 +0000] - 200 200 - GET https otowo.duckdns.org "/@vite/client" [Client 142.111.105.55] [Length 95079] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[02/Dec/2024:23:08:10 +0000] - 200 200 - GET https otowo.duckdns.org "/src/main.tsx" [Client 142.111.105.55] [Length 4923] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/@react-refresh" [Client 142.111.105.55] [Length 73093] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=5dc136cc" [Client 142.111.105.55] [Length 35991] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query.js?v=e8971d4c" [Client 142.111.105.55] [Length 1979] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-router.js?v=4bddc7a6" [Client 142.111.105.55] [Length 4131] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-dom_client.js?v=162c2dbe" [Client 142.111.105.55] [Length 1118] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routeTree.gen.ts" [Client 142.111.105.55] [Length 8551] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react.js?v=2037cdc3" [Client 142.111.105.55] [Length 219] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/index.ts" [Client 142.111.105.55] [Length 1163] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/theme.tsx" [Client 142.111.105.55] [Length 4532] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/vite/dist/client/env.mjs" [Client 142.111.105.55] [Length 3226] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/@vite/client" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-WLNUW44W.js?v=f62d281e" [Client 142.111.105.55] [Length 107113] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=e8971d4c" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-H7PNMJDI.js?v=f62d281e" [Client 142.111.105.55] [Length 36324] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=e8971d4c" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-QVJRRYHF.js?v=f62d281e" [Client 142.111.105.55] [Length 77791] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=e8971d4c" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-TIUEEL27.js?v=f62d281e" [Client 142.111.105.55] [Length 3168] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=e8971d4c" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_react.js?v=41546697" [Client 142.111.105.55] [Length 916563] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=f62d281e" [Client 142.111.105.55] [Length 127426] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=4bddc7a6" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-XUSVWCLU.js?v=f62d281e" [Client 142.111.105.55] [Length 490] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=4bddc7a6" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/reset-password.tsx" [Client 142.111.105.55] [Length 17124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:23:08:11 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/__root.tsx" [Client 142.111.105.55] [Length 4854] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 142.111.105.55] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/recover-password.tsx" [Client 142.111.105.55] [Length 12650] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/login.tsx" [Client 142.111.105.55] [Length 18469] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout.tsx" [Client 142.111.105.55] [Length 6193] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/index.tsx" [Client 142.111.105.55] [Length 5228] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/settings.tsx" [Client 142.111.105.55] [Length 9799] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/items.tsx" [Client 142.111.105.55] [Length 25279] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/admin.tsx" [Client 142.111.105.55] [Length 21681] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/ApiError.ts" [Client 142.111.105.55] [Length 2665] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/CancelablePromise.ts" [Client 142.111.105.55] [Length 11940] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/OpenAPI.ts" [Client 142.111.105.55] [Length 4614] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/models.ts" [Client 142.111.105.55] [Length 2523] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/schemas.ts" [Client 142.111.105.55] [Length 23087] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/services.ts" [Client 142.111.105.55] [Length 31514] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useAuth.ts" [Client 142.111.105.55] [Length 6272] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useCustomToast.ts" [Client 142.111.105.55] [Length 1912] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-hook-form.js?v=e89af03b" [Client 142.111.105.55] [Length 72121] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/utils.ts" [Client 142.111.105.55] [Length 3261] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/NotFound.tsx" [Client 142.111.105.55] [Length 6109] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/ActionsMenu.tsx" [Client 142.111.105.55] [Length 11136] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/admin.tsx" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Navbar.tsx" [Client 142.111.105.55] [Length 7175] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/admin.tsx" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/Appearance.tsx" [Client 142.111.105.55] [Length 7182] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/ChangePassword.tsx" [Client 142.111.105.55] [Length 19915] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:23:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteAccount.tsx" [Client 142.111.105.55] [Length 5964] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/UserInformation.tsx" [Client 142.111.105.55] [Length 22510] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Sidebar.tsx" [Client 142.111.105.55] [Length 21263] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/UserMenu.tsx" [Client 142.111.105.55] [Length 9337] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-Z43TZB5X.js?v=f62d281e" [Client 142.111.105.55] [Length 330459] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@chakra-ui_react.js?v=41546697" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg?import" [Client 142.111.105.55] [Length 403] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_icons.js?v=33a16e54" [Client 142.111.105.55] [Length 37295] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/axios.js?v=91e77559" [Client 142.111.105.55] [Length 67970] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/hooks/useAuth.ts" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=f62d281e" [Client 142.111.105.55] [Length 925355] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=162c2dbe" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/zod.js?v=f33893d2" [Client 142.111.105.55] [Length 111603] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fi.js?v=1f9e58aa" [Client 142.111.105.55] [Length 149381] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/EditUser.tsx" [Client 142.111.105.55] [Length 31239] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/EditItem.tsx" [Client 142.111.105.55] [Length 18988] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:23:08:13 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/DeleteAlert.tsx" [Client 142.111.105.55] [Length 15745] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:23:08:14 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/request.ts" [Client 142.111.105.55] [Length 33141] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/services.ts" +[02/Dec/2024:23:08:14 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/AddUser.tsx" [Client 142.111.105.55] [Length 32605] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:23:08:14 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/AddItem.tsx" [Client 142.111.105.55] [Length 18724] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:23:08:14 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteConfirmation.tsx" [Client 142.111.105.55] [Length 14748] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/UserSettings/DeleteAccount.tsx" +[02/Dec/2024:23:08:14 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/SidebarItems.tsx" [Client 142.111.105.55] [Length 8591] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[02/Dec/2024:23:08:14 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-I6VZC2OZ.js?v=f62d281e" [Client 142.111.105.55] [Length 5016] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-icons_fi.js?v=1f9e58aa" +[02/Dec/2024:23:08:15 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_bs.js?v=5bf6ac55" [Client 142.111.105.55] [Length 1847548] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[02/Dec/2024:23:08:17 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fa.js?v=8bfac334" [Client 142.111.105.55] [Length 1407409] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[02/Dec/2024:23:08:17 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:08:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_router-devtools.js?v=b2dd836b" [Client 142.111.105.55] [Length 97708] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:23:08:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=496c79e1" [Client 142.111.105.55] [Length 6949] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[02/Dec/2024:23:08:18 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg" [Client 142.111.105.55] [Length 6309] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:23:08:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-PJWIUSLW.js?v=f62d281e" [Client 142.111.105.55] [Length 93780] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=496c79e1" +[02/Dec/2024:23:08:18 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 142.111.105.55] [Length 5043] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:23:08:18 +0000] - 304 304 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 142.111.105.55] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:23:08:18 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 142.111.105.55] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[02/Dec/2024:23:08:19 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/WIIHGP5G-53S2SJXP.js?v=f62d281e" [Client 142.111.105.55] [Length 453971] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=496c79e1" +[02/Dec/2024:23:08:27 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:08:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:08:42 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:08:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:09:02 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:09:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:09:18 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR160_1" [Client 105.112.228.208] [Length 16007] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:09:18 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733180658214000000&end=1733180958214000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:09:18 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733180658214000000&end=1733180958214000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:09:18 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:09:22 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733159362147000000&end=1733180962147000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:09:22 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733159362147000000&end=1733180962147000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:09:22 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR161_1" [Client 105.112.228.208] [Length 251058] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:09:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:09:53 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:10:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:10:35 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:10:40 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733159362147000000&end=1733180962147000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:10:41 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR162_1" [Client 105.112.228.208] [Length 42661] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:10:42 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:10:46 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/user/auth-tokens/rotate" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:11:02 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:11:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:11:38 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 104.166.80.188] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" +[02/Dec/2024:23:11:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:11:56 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:12:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:12:19 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:12:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:12:42 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:12:45 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:12:49 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:13:07 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:13:09 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:13:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:13:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:13:55 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:14:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:14:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:14:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:14:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:14:43 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:14:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:15:05 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:15:15 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:15:20 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" [Client 105.112.228.208] [Length 15252] [Gzip 3.98] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:15:21 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/user/orgs" [Client 105.112.228.208] [Length 47] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:15:21 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=5&type=dash-db&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:15:21 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/grafana-lokiexplore-app/settings" [Client 105.112.228.208] [Length 2101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:15:21 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:15:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:15:25 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:15:25 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/label/__name__/values?start=1733159700&end=1733181360" [Client 23.236.58.169] [Length 3160] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:15:25 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e/resources/api/v1/label/__name__/values?start=1733159700&end=1733181360" [Client 105.112.228.208] [Length 3160] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:15:26 +0000] - 200 200 - POST https otowo.duckdns.org "/prometheus/api/v1/labels" [Client 23.236.58.169] [Length 503] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[02/Dec/2024:23:15:26 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/datasources/uid/ce5qw9nr2utq8e/resources/api/v1/labels" [Client 105.112.228.208] [Length 503] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:15:26 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:15:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733159727793000000&end=1733181327793000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:15:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733159727987000000&end=1733181327987000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:15:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733159722068000000&end=1733181322068000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:15:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:15:31 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:15:37 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:15:41 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:15:42 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:15:46 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733159722068000000&end=1733181322068000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:15:47 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR101_1" [Client 105.112.228.208] [Length 50401] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:16:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:16:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:16:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:16:42 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:16:48 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:17:05 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:17:12 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:17:16 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733159722068000000&end=1733181322068000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:17:18 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR102_1" [Client 105.112.228.208] [Length 1609] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:17:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:17:25 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR103_1" [Client 105.112.228.208] [Length 2108] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:17:26 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733178878524000000&end=1733179639250000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:17:26 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733178878524000000&end=1733179639250000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:17:28 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:17:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:17:55 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:17:58 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:18:01 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:18:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/barchart/img/barchart.svg" [Client 105.112.228.208] [Length 1255] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/stat/img/icn-singlestat-panel.svg" [Client 105.112.228.208] [Length 1650] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/bargauge/img/icon_bar_gauge.svg" [Client 105.112.228.208] [Length 1119] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/gauge/img/icon_gauge.svg" [Client 105.112.228.208] [Length 1985] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/table/img/icn-table-panel.svg" [Client 105.112.228.208] [Length 1789] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/piechart/img/icon_piechart.svg" [Client 105.112.228.208] [Length 971] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/heatmap/img/icn-heatmap-panel.svg" [Client 105.112.228.208] [Length 3514] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/state-timeline/img/timeline.svg" [Client 105.112.228.208] [Length 2272] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/status-history/img/status.svg" [Client 105.112.228.208] [Length 4010] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/histogram/img/histogram.svg" [Client 105.112.228.208] [Length 2613] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/text/img/icn-text-panel.svg" [Client 105.112.228.208] [Length 985] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/alertlist/img/icn-singlestat-panel.svg" [Client 105.112.228.208] [Length 2059] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/news/img/news.svg" [Client 105.112.228.208] [Length 2559] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/dashlist/img/icn-dashlist-panel.svg" [Client 105.112.228.208] [Length 2779] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/candlestick/img/candlestick.svg" [Client 105.112.228.208] [Length 533] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/annolist/img/icn-annolist-panel.svg" [Client 105.112.228.208] [Length 1190] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/flamegraph/img/icn-flamegraph.svg" [Client 105.112.228.208] [Length 2166] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/canvas/img/icn-canvas.svg" [Client 105.112.228.208] [Length 1004] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/geomap/img/icn-geomap.svg" [Client 105.112.228.208] [Length 2493] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/logs/img/icn-logs-panel.svg" [Client 105.112.228.208] [Length 2419] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/traces/img/traces-panel.svg" [Client 105.112.228.208] [Length 1016] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/nodeGraph/img/icn-node-graph.svg" [Client 105.112.228.208] [Length 1312] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/trend/img/trend.svg" [Client 105.112.228.208] [Length 1215] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/xychart/img/icn-xychart.svg" [Client 105.112.228.208] [Length 1791] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/logsPanel.37c0e991f554637edb20.js" [Client 105.112.228.208] [Length 7824] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:10 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/1166.247cc706617cc6970cae.js" [Client 105.112.228.208] [Length 48140] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:38.524Z&to=2024-12-02T22:47:19.250Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:17 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:18:21 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR104_1" [Client 105.112.228.208] [Length 10092] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:22 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733178882583000000&end=1733178929672000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:22 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733178882583000000&end=1733178929672000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:18:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:18:39 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:18:47 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:18:58 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:19:15 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:19:19 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:19:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:19:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:19:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:20:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:20:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:20:31 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/user/auth-tokens/rotate" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:20:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:20:53 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:20:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:21:02 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:21:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:21:14 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:21:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:21:19 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733178882583000000&end=1733178929672000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:21:21 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR105_1" [Client 105.112.228.208] [Length 104442] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:21:21 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:21:34 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:21:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:21:43 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:21:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733178882583000000&end=1733178929672000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:21:51 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR106_1" [Client 105.112.228.208] [Length 9936] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:21:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:22:01 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:22:01 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:22:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:22:19 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:22:35 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:22:40 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:23:00 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:23:05 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:23:26 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:23:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:23:34 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733178882583000000&end=1733178929672000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:23:35 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR107_1" [Client 105.112.228.208] [Length 67041] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:23:51 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:24:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:24:24 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:24:26 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733178882583000000&end=1733178929672000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:24:29 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/label/job/values?start=1733178882583000000&end=1733178929672000000&query=%7Bjob%3D%22varlogs%22%7D" [Client 105.112.228.208] [Length 81] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:24:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733178882583000000&end=1733178929672000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:24:35 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:24:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/label/job/values?start=1733178882583000000&end=1733178929672000000" [Client 105.112.228.208] [Length 51] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:24:39 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733178882583000000&end=1733178929672000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:24:43 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR108_1" [Client 105.112.228.208] [Length 67044] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T22:34:42.583Z&to=2024-12-02T22:35:29.672Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:24:47 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:24:49 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR109_1" [Client 105.112.228.208] [Length 16869] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733181589964000000&end=1733181889965000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:24:55 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR110_1" [Client 105.112.228.208] [Length 12466] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-30m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:24:55 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733180096016000000&end=1733181896016000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-30m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:24:59 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR111_1" [Client 105.112.228.208] [Length 20876] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-1h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:24:59 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733178299620000000&end=1733181899620000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-1h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:25:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:25:08 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR112_1" [Client 105.112.228.208] [Length 7295] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:25:08 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733160308975000000&end=1733181908975000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:25:18 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR113_1" [Client 105.112.228.208] [Length 16946] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:25:18 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733181618975000000&end=1733181918976000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:25:20 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:25:32 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:25:33 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/histogramPanel.fe145bdcc770b4834de0.js" [Client 105.112.228.208] [Length 20632] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:25:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:25:43 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/trendPanel.b2846eaa8485bd0d74e4.js" [Client 105.112.228.208] [Length 14869] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:25:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/8895.798f7b1aef7dce87f66b.js" [Client 105.112.228.208] [Length 13093] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:25:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/barChartPanel.0badf1c77669baf760d5.js" [Client 105.112.228.208] [Length 34440] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:25:55 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:26:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/barGaugePanel.7f5aeb48bcd2801b02cb.js" [Client 105.112.228.208] [Length 3699] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:26:15 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:26:24 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:26:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/pieChartPanel.e89c9cf47156827c6895.js" [Client 105.112.228.208] [Length 59790] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:26:33 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/stateTimelinePanel.158705559a7af78a8076.js" [Client 105.112.228.208] [Length 6025] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:26:33 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/4606.b79b4f6137533589f0f3.js" [Client 105.112.228.208] [Length 10385] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:26:39 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/407.8d27c00123356eb1ded7.js" [Client 105.112.228.208] [Length 10268] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:26:40 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/8891.80b3b278e0fc66508502.js" [Client 105.112.228.208] [Length 7860] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:26:40 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/heatmapPanel.15cd889552afed81b6a0.js" [Client 105.112.228.208] [Length 29109] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:26:40 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/5995.093dfee3c4cfd184e057.js" [Client 105.112.228.208] [Length 291960] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:26:45 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:26:46 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733181618975000000&end=1733181918976000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:26:46 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 4396] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:26:50 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR114_1" [Client 105.112.228.208] [Length 14517] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:27:05 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:27:09 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:27:12 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:27:26 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:27:37 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:27:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733181618975000000&end=1733181918976000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:27:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:27:55 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733181618975000000&end=1733181918976000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:27:56 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR115_1" [Client 105.112.228.208] [Length 3459] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:28:01 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR116_1" [Client 105.112.228.208] [Length 10113] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T23:24:15.918Z&to=2024-12-02T23:25:12.925Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:28:01 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/labels?start=1733181855918000000&end=1733181912925000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T23:24:15.918Z&to=2024-12-02T23:25:12.925Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:28:01 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733181855918000000&end=1733181912925000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T23:24:15.918Z&to=2024-12-02T23:25:12.925Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:28:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:28:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:28:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:28:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:28:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:28:43 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:28:55 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:29:09 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:29:18 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:29:21 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:29:35 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:29:55 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:30:05 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D~%22.*%22%7D&start=1733181855918000000&end=1733181912925000000" [Client 105.112.228.208] [Length 221] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T23:24:15.918Z&to=2024-12-02T23:25:12.925Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:30:05 +0000] - 400 400 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR117_1" [Client 105.112.228.208] [Length 265] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T23:24:15.918Z&to=2024-12-02T23:25:12.925Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:30:09 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/user/auth-tokens/rotate" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T23:24:15.918Z&to=2024-12-02T23:25:12.925Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:30:11 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:30:13 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:30:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:30:25 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:30:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:30:51 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:30:52 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:31:00 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:31:20 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:31:25 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733181855918000000&end=1733181912925000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T23:24:15.918Z&to=2024-12-02T23:25:12.925Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:31:26 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR118_1" [Client 105.112.228.208] [Length 1809] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T23:24:15.918Z&to=2024-12-02T23:25:12.925Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:31:37 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:31:55 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:31:58 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:32:07 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:32:13 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:32:19 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:32:28 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:32:37 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:32:56 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:33:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:33:26 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:33:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:33:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:33:58 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:34:17 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:34:38 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:34:51 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:35:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:35:25 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:35:39 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:35:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:36:01 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:36:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:36:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:36:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:36:45 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:36:53 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:37:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:37:18 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:37:37 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:37:46 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:38:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:38:19 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:38:24 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:38:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:39:00 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:39:20 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:39:38 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:39:52 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:40:07 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/user/auth-tokens/rotate" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=2024-12-02T23:24:15.918Z&to=2024-12-02T23:25:12.925Z&timezone=browser&editPanel=1" +[02/Dec/2024:23:40:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:40:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:40:39 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:40:55 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:40:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:41:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:41:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:41:39 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:41:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:42:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:42:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:42:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/prometheus/grafana/api/v1/rules?dashboard_uid=null" [Client 105.112.228.208] [Length 41] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboards" +[02/Dec/2024:23:42:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search/sorting" [Client 105.112.228.208] [Length 291] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboards" +[02/Dec/2024:23:42:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/folders/general?accesscontrol=true" [Client 105.112.228.208] [Length 991] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboards" +[02/Dec/2024:23:42:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/folders?page=1&limit=50" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboards" +[02/Dec/2024:23:42:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=50&page=1&type=dash-db&folderUIDs=general" [Client 105.112.228.208] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboards" +[02/Dec/2024:23:42:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:42:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/dashboards/home" [Client 105.112.228.208] [Length 1437] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:23:42:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1" [Client 105.112.228.208] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:23:42:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&core=0" [Client 105.112.228.208] [Length 1233] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:23:42:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?dashboardUIDs=fe5qx4wabqhvkf&limit=30" [Client 105.112.228.208] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:23:42:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30&starred=true" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:23:42:39 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?enabled=1&type=datasource" [Client 105.112.228.208] [Length 16789] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:42:39 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&accesscontrol=true" [Client 105.112.228.208] [Length 42663] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:42:39 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/errors" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:42:40 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins?includeDeprecated=true" [Client 105.112.228.208] [Length 117559] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:42:41 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:42:43 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:42:46 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/datasources" [Client 105.112.228.208] [Length 417] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:42:46 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.228.208] [Length 36496] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:42:47 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/access-control/user/actions?reloadcache=true" [Client 105.112.228.208] [Length 3741] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:42:47 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge?accesscontrol=true" [Client 105.112.228.208] [Length 720] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:42:47 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/loki/settings" [Client 105.112.228.208] [Length 1095] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:42:47 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/loki" [Client 105.112.228.208] [Length 1033] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:42:48 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&accesscontrol=true" [Client 105.112.228.208] [Length 42663] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:42:48 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/loki/markdown/README" [Client 105.112.228.208] [Length 127] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:42:48 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/loki/markdown/CHANGELOG" [Client 105.112.228.208] [Length 127] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:42:48 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/gnet/plugins/loki/versions" [Client 105.112.228.208] [Length 709] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:42:49 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:42:59 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:43:05 +0000] - 200 200 - PUT https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge" [Client 105.112.228.208] [Length 441] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:43:05 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.228.208] [Length 36495] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:43:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge?accesscontrol=true" [Client 105.112.228.208] [Length 742] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:43:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge/health" [Client 105.112.228.208] [Length 106] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:43:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:43:33 +0000] - 200 200 - PUT https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge" [Client 105.112.228.208] [Length 435] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:43:33 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.228.208] [Length 36491] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:43:34 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge?accesscontrol=true" [Client 105.112.228.208] [Length 736] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:43:34 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge/health" [Client 105.112.228.208] [Length 63] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:43:39 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge/resources/labels?start=1733161417775000000&end=1733183017775000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:43:41 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:43:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:43:53 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge/resources/labels?start=1733161417775000000&end=1733183017775000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:43:56 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge/resources/label/job/values?start=1733161417775000000&end=1733183017775000000" [Client 105.112.228.208] [Length 51] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:43:57 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733161417775000000&end=1733183017775000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:43:57 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 4222] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:44:00 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR120_1" [Client 105.112.228.208] [Length 259380] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:44:00 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:44:09 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/rules" [Client 105.112.228.208] [Length 101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/rules" +[02/Dec/2024:23:44:10 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/rules?type=alert" [Client 105.112.228.208] [Length 101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/alerts" +[02/Dec/2024:23:44:11 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/query?query=time%28%29" [Client 105.112.228.208] [Length 124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:23:44:11 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/label/__name__/values" [Client 105.112.228.208] [Length 3169] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/query" +[02/Dec/2024:23:44:18 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:44:19 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/scrape_pools" [Client 105.112.228.208] [Length 116] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:44:19 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/targets?state=active&scrapePool=" [Client 105.112.228.208] [Length 585] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:44:38 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:44:45 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[02/Dec/2024:23:44:56 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:45:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:45:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:45:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:45:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:46:00 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:46:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:46:28 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:46:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:46:55 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:47:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:47:21 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:47:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:47:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:48:04 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:48:19 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:48:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:48:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:48:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:48:55 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:49:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:49:34 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:49:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:49:47 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:49:52 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:49:54 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/user/auth-tokens/rotate" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:50:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:50:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:50:26 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/prometheus/grafana/api/v1/rules?dashboard_uid=null" [Client 105.112.228.208] [Length 41] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:23:50:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/dashboards/home" [Client 105.112.228.208] [Length 1437] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/" +[02/Dec/2024:23:50:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=1" [Client 105.112.228.208] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:23:50:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?embedded=0&core=0" [Client 105.112.228.208] [Length 1233] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:23:50:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=30&starred=true" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:23:50:27 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?dashboardUIDs=fe5qx4wabqhvkf&limit=30" [Client 105.112.228.208] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:23:50:28 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:50:31 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?enabled=1&type=datasource" [Client 105.112.228.208] [Length 16789] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:50:31 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:50:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources" [Client 105.112.228.208] [Length 944] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources" +[02/Dec/2024:23:50:35 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/prometheus/img/prometheus_logo.svg" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources" +[02/Dec/2024:23:50:40 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge?accesscontrol=true" [Client 105.112.228.208] [Length 736] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:50:46 +0000] - 200 200 - DELETE https otowo.duckdns.org "/grafana/api/datasources/uid/be5r1cewv1ukge" [Client 105.112.228.208] [Length 40] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:50:46 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.228.208] [Length 34967] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/be5r1cewv1ukge" +[02/Dec/2024:23:50:47 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources" [Client 105.112.228.208] [Length 652] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources" +[02/Dec/2024:23:50:48 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:50:50 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f?accesscontrol=true" [Client 105.112.228.208] [Length 735] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:23:50:55 +0000] - 200 200 - DELETE https otowo.duckdns.org "/grafana/api/datasources/uid/fe5qwuq3s3k00f" [Client 105.112.228.208] [Length 40] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:23:50:56 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.228.208] [Length 33401] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +[02/Dec/2024:23:50:56 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources" [Client 105.112.228.208] [Length 361] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources" +[02/Dec/2024:23:51:00 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins?enabled=1&type=datasource" [Client 105.112.228.208] [Length 16804] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:51:03 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/datasources" [Client 105.112.228.208] [Length 413] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:51:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.228.208] [Length 34929] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:51:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:51:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/access-control/user/actions?reloadcache=true" [Client 105.112.228.208] [Length 3741] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/new" +[02/Dec/2024:23:51:04 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b?accesscontrol=true" [Client 105.112.228.208] [Length 718] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5r22zxmkef4b" +[02/Dec/2024:23:51:14 +0000] - 200 200 - PUT https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b" [Client 105.112.228.208] [Length 432] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5r22zxmkef4b" +[02/Dec/2024:23:51:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/frontend/settings" [Client 105.112.228.208] [Length 34929] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5r22zxmkef4b" +[02/Dec/2024:23:51:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b?accesscontrol=true" [Client 105.112.228.208] [Length 735] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5r22zxmkef4b" +[02/Dec/2024:23:51:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/health" [Client 105.112.228.208] [Length 63] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5r22zxmkef4b" +[02/Dec/2024:23:51:20 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=datasource&requestId=SQR121" [Client 105.112.228.208] [Length 23628] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1&firstPanel" +[02/Dec/2024:23:51:21 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/live/list" [Client 105.112.228.208] [Length 1486] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:51:21 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:51:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:51:36 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/labels?start=1733161879646000000&end=1733183479647000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:51:37 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:51:51 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:51:56 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:51:56 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733161879646000000&end=1733183479647000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:51:57 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR122_1" [Client 105.112.228.208] [Length 57701] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:52:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:52:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:52:52 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:53:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:53:17 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:53:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:53:39 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:53:43 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:53:46 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:54:05 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:54:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:54:20 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:54:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:54:49 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:55:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:55:13 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" [Client 105.112.228.208] [Length 15240] [Gzip 3.98] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:55:13 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/img/grafana_icon.svg" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:14 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/plugins/grafana-lokiexplore-app/module.js?_cache=1.0.4" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:14 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Regular.woff2" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:55:14 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/user/orgs" [Client 105.112.228.208] [Length 47] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=5&type=dash-db&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/avatar/46d229b033af06a191ff2267bca9ae56" [Client 105.112.228.208] [Length 720] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:15 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Medium.woff2" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/grafana-lokiexplore-app/settings" [Client 105.112.228.208] [Length 2101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:15 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/img/fav32.png" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser" +[02/Dec/2024:23:55:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:55:17 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/img/icons/unicons/spinner.svg" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1&firstPanel" +[02/Dec/2024:23:55:17 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=datasource&requestId=SQR100" [Client 105.112.228.208] [Length 23881] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1&firstPanel" +[02/Dec/2024:23:55:18 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/loki/img/loki_icon.svg" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:18 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/live/list" [Client 105.112.228.208] [Length 1486] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:18 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:55:21 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:55:21 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/labels?start=1733162115679000000&end=1733183715680000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:24 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:24 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:55:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:55:35 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:55:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/labels?start=1733162115679000000&end=1733183715680000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:40 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/label/job/values?start=1733162115679000000&end=1733183715680000000" [Client 105.112.228.208] [Length 51] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:42 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bjob%3D%22varlogs%22%7D&start=1733162115679000000&end=1733183715680000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:42 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 4481] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:46 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR101_1" [Client 105.112.228.208] [Length 248480] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:55:48 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:55:53 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:56:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:56:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:56:38 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:56:49 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:57:09 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:57:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:57:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:57:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:57:40 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:57:58 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:58:04 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:58:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:58:15 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:58:26 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:58:32 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:58:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:59:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:59:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:59:34 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/user/auth-tokens/rotate" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[02/Dec/2024:23:59:40 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:23:59:52 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:00:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:00:15 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:00:34 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:00:52 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:00:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:01:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:01:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:01:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:01:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:01:52 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/labels?start=1733162115679000000&end=1733183715680000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:01:54 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bfilename%3D%22varlogs%22%7D&start=1733162115679000000&end=1733183715680000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:01:54 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 1556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:01:55 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/label/filename/values?start=1733162115679000000&end=1733183715680000000" [Client 105.112.228.208] [Length 208] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:01 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bfilename%3D%22%2Fvar%2Flog%2Fauth.log%22%7D&start=1733162115679000000&end=1733183715680000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:01 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 4078] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:04 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:02:04 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR102_1" [Client 105.112.228.208] [Length 247612] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:07 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR103_1" [Client 105.112.228.208] [Length 247749] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:10 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:02:12 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bfilename%3D%22%2Fvar%2Flog%2Fservice_status.log%22%7D&start=1733162115679000000&end=1733183715680000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:12 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 3570] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:14 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR104_1" [Client 105.112.228.208] [Length 195356] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:19 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 4078] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:23 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bfilename%3D%22%2Fvar%2Flog%2Fauth.log%22%7D&start=1733162115679000000&end=1733183715680000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:24 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/icons/unicons/sync-slash.svg" [Client 105.112.228.208] [Length 634] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:24 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR105_1" [Client 105.112.228.208] [Length 247674] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:02:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:02:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:03:01 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:03:13 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:03:15 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:03:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:03:51 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:04:01 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:04:18 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:04:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:04:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:05:07 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:05:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:05:21 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:05:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:05:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:05:53 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:06:05 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:06:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:06:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:06:47 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:06:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:07:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:07:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:07:56 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" [Client 105.112.228.208] [Length 15239] [Gzip 3.98] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:07:57 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/grafana-lokiexplore-app/settings" [Client 105.112.228.208] [Length 2101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:07:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:07:57 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/user/orgs" [Client 105.112.228.208] [Length 47] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:07:57 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=5&type=dash-db&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:07:59 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:07:59 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=datasource&requestId=SQR100" [Client 105.112.228.208] [Length 23582] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1&firstPanel" +[03/Dec/2024:00:08:00 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/app/plugins/panel/timeseries/img/icn-timeseries-panel.svg" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1&firstPanel" +[03/Dec/2024:00:08:00 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/mixed/img/icn-mixeddatasources.svg" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:00 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/dashboard/img/icn-reusequeries.svg" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:00 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/grafana/img/icn-grafanadb.svg" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:00 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/live/list" [Client 105.112.228.208] [Length 1486] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:01 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:08:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:08:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:08:06 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/labels?start=1733162878393000000&end=1733184478393000000" [Client 105.112.228.208] [Length 127] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:07 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:09 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:08:12 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/label/compose_service/values?start=1733162878393000000&end=1733184478393000000" [Client 105.112.228.208] [Length 145] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:15 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/fonts/roboto/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:15 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bcompose_service%3D%22backend%22%7D&start=1733162878393000000&end=1733184478393000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:15 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 3140] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:20 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR101_1" [Client 105.112.228.208] [Length 3108] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:25 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:08:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/labels?start=1733162878393000000&end=1733184478393000000" [Client 105.112.228.208] [Length 127] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:43 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bcontainer_name%3D%22backend%22%7D&start=1733162878393000000&end=1733184478393000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:43 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 1563] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:44 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/label/container_name/values?start=1733162878393000000&end=1733184478393000000" [Client 105.112.228.208] [Length 247] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:46 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:08:47 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bcontainer_name%3D%22cv-challenge01-frontend-1%22%7D&start=1733162878393000000&end=1733184478393000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:47 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 4217] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:51 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR102_1" [Client 105.112.228.208] [Length 4185] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:08:52 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:09:06 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:09:11 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/user/auth-tokens/rotate" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:09:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:09:24 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:09:46 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:09:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:09:59 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:10:20 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:10:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:10:45 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:11:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:11:13 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:11:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:11:32 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:11:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:12:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:12:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:12:37 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:12:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:12:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:13:15 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:13:29 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:13:39 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:13:53 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:14:14 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:14:18 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:14:24 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:14:28 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:14:38 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/labels?start=1733162878393000000&end=1733184478393000000" [Client 105.112.228.208] [Length 127] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:14:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:14:43 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bjob%3D%22docker_logs%22%7D&start=1733162878393000000&end=1733184478393000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:14:45 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR103_1" [Client 105.112.228.208] [Length 1521] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:14:49 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[03/Dec/2024:00:15:00 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:15:13 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:15:19 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:15:27 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:15:34 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:15:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:16:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:16:24 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:16:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:16:42 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:16:53 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:17:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:17:20 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:17:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:17:28 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:17:49 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:18:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:18:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:18:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:18:55 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/user/auth-tokens/rotate" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:19:02 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:19:24 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:19:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:19:52 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:20:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:20:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:20:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:20:47 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:20:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:21:03 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:21:23 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:21:34 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:21:38 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:21:53 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:22:13 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:22:16 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:22:21 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:22:37 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:22:57 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:23:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:23:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:23:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:24:02 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:24:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:24:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:24:33 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:24:47 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:25:05 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:25:17 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:25:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:25:45 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:25:49 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:25:58 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:26:19 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:26:30 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:26:42 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:26:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:27:01 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:27:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:27:20 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:27:34 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:27:38 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:27:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:28:00 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:28:21 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:28:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:28:42 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/user/auth-tokens/rotate" [Client 105.112.228.208] [Length 2] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:28:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:29:05 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:29:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:29:18 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:29:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:29:40 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:29:54 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:30:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:30:13 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:30:36 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:30:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:31:07 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:31:27 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:31:48 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:32:08 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:32:11 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:32:21 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:32:31 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:32:45 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:32:50 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:51:23 +0000] - 401 401 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 105] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:51:35 +0000] - 302 302 - GET https otowo.duckdns.org "/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" [Client 105.112.228.208] [Length 55] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:51:35 +0000] - 302 302 - GET https otowo.duckdns.org "/grafana/user/auth-tokens/rotate" [Client 105.112.228.208] [Length 117] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:51:35 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" [Client 105.112.228.208] [Length 15240] [Gzip 3.98] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:51:37 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:51:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/plugins/grafana-lokiexplore-app/settings" [Client 105.112.228.208] [Length 2101] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:51:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/user/orgs" [Client 105.112.228.208] [Length 47] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:51:37 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/search?limit=5&type=dash-db&dashboardUID=fe5qx4wabqhvkf" [Client 105.112.228.208] [Length 236] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:51:39 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:51:41 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=datasource&requestId=SQR100" [Client 105.112.228.208] [Length 23554] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1&firstPanel" +[03/Dec/2024:00:51:41 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:51:41 +0000] - 304 304 - GET https otowo.duckdns.org "/grafana/public/app/plugins/datasource/prometheus/img/prometheus_logo.svg" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:51:41 +0000] - 302 302 - GET https otowo.duckdns.org "/grafana/user/auth-tokens/rotate" [Client 105.112.127.132] [Length 37] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://www.google.com/" +[03/Dec/2024:00:51:41 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/live/list" [Client 105.112.228.208] [Length 1486] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:51:42 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/login" [Client 105.112.127.132] [Length 11526] [Gzip 3.88] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://www.google.com/" +[03/Dec/2024:00:51:42 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/grafana.dark.722d809dba5a31f57d49.css" [Client 105.112.127.132] [Length 87981] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:43 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:51:43 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/runtime.75f0f98992ae2be072d5.js" [Client 105.112.127.132] [Length 15134] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:44 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/4239.c2eca2b0222ddf40980b.js" [Client 105.112.127.132] [Length 920353] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:44 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/6029.0549a3fcb50e73c4b256.js" [Client 105.112.127.132] [Length 409895] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:44 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/8078.a4260b06f1454becf5c9.js" [Client 105.112.127.132] [Length 20200] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/app.573d087f3f9bd7c53cd0.js" [Client 105.112.127.132] [Length 866179] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/3719.c065b2e146c4c8347d51.js" [Client 105.112.127.132] [Length 194879] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9636.b941a14f2c41910ad58c.js" [Client 105.112.127.132] [Length 2875298] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:45 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/322.fcd895da48f9c276a57d.js" [Client 105.112.127.132] [Length 3058673] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:47 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/frontend-metrics" [Client 105.112.228.208] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:51:47 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:51:47 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/9521.9d3621a6f245a3ddbdfe.js" [Client 105.112.127.132] [Length 93197] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:47 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/grafana_icon.svg" [Client 105.112.127.132] [Length 5690] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:48 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/build/LoginPage.337a8fe1cc0c69e91c08.js" [Client 105.112.127.132] [Length 16082] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:48 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/img/g8_login_dark.svg" [Client 105.112.127.132] [Length 2361] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:48 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Medium.woff2" [Client 105.112.127.132] [Length 111380] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:48 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/public/fonts/inter/Inter-Regular.woff2" [Client 105.112.127.132] [Length 108488] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/login" +[03/Dec/2024:00:51:49 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/labels?start=1733165498576000000&end=1733187098576000000" [Client 105.112.228.208] [Length 127] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:51:53 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/label/compose_service/values?start=1733165498576000000&end=1733187098576000000" [Client 105.112.228.208] [Length 48] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:51:55 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bcompose_service%3D%22loki%22%7D&start=1733165498576000000&end=1733187098576000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:51:55 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 5982] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:51:56 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:51:57 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR101_1" [Client 105.112.228.208] [Length 30960] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:52:00 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/labels?start=1733165498576000000&end=1733187098576000000" [Client 105.112.228.208] [Length 127] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:52:02 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bcontainer_name%3D%22loki%22%7D&start=1733165498576000000&end=1733187098576000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:52:02 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 5975] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:52:03 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/label/container_name/values?start=1733165498576000000&end=1733187098576000000" [Client 105.112.228.208] [Length 48] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:52:06 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR102_1" [Client 105.112.228.208] [Length 30928] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:52:09 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:52:12 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:52:17 +0000] - 200 200 - GET https otowo.duckdns.org "/grafana/api/datasources/uid/fe5r22zxmkef4b/resources/index/stats?query=%7Bcontainer_name%3D%22loki%22%7D&start=1733165498576000000&end=1733187098576000000" [Client 105.112.228.208] [Length 58] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:52:17 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=loki-data-samples_1" [Client 105.112.228.208] [Length 7379] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:52:21 +0000] - 200 200 - POST https otowo.duckdns.org "/grafana/api/ds/query?ds_type=loki&requestId=SQR103_1" [Client 105.112.228.208] [Length 40459] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +[03/Dec/2024:00:52:25 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:52:28 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:52:44 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:52:46 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:53:01 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:53:20 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:53:22 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:00:53:42 +0000] - 400 400 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.228.208] [Length 12] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:01:58:53 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:01:59:04 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:01:59:17 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:01:59:21 +0000] - 304 304 - GET https otowo.duckdns.org "/" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:01:59:22 +0000] - 304 304 - GET https otowo.duckdns.org "/@vite/client" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[03/Dec/2024:01:59:22 +0000] - 200 200 - GET https otowo.duckdns.org "/src/main.tsx" [Client 105.112.227.7] [Length 4923] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[03/Dec/2024:01:59:22 +0000] - 304 304 - GET https otowo.duckdns.org "/@react-refresh" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[03/Dec/2024:01:59:22 +0000] - 304 304 - GET https otowo.duckdns.org "/node_modules/vite/dist/client/env.mjs" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/@vite/client" +[03/Dec/2024:01:59:23 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query.js?v=564f9227" [Client 105.112.227.7] [Length 1979] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:01:59:23 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=40f49a3e" [Client 105.112.227.7] [Length 35991] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:01:59:23 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-router.js?v=2c3a0e3d" [Client 105.112.227.7] [Length 4131] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:01:59:23 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-dom_client.js?v=ffea9462" [Client 105.112.227.7] [Length 1118] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:01:59:23 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react.js?v=4fe83a6c" [Client 105.112.227.7] [Length 219] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:01:59:23 +0000] - 304 304 - GET https otowo.duckdns.org "/src/routeTree.gen.ts" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:01:59:23 +0000] - 200 200 - GET https otowo.duckdns.org "/src/theme.tsx" [Client 105.112.227.7] [Length 4532] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:01:59:23 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 105.112.227.7] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:01:59:23 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/index.ts" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-WLNUW44W.js?v=8f63c541" [Client 105.112.227.7] [Length 107113] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=564f9227" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_react.js?v=a6267847" [Client 105.112.227.7] [Length 916563] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-TIUEEL27.js?v=8f63c541" [Client 105.112.227.7] [Length 3168] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=564f9227" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-H7PNMJDI.js?v=8f63c541" [Client 105.112.227.7] [Length 36324] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=564f9227" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-QVJRRYHF.js?v=8f63c541" [Client 105.112.227.7] [Length 77791] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=564f9227" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-XUSVWCLU.js?v=8f63c541" [Client 105.112.227.7] [Length 490] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=2c3a0e3d" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=8f63c541" [Client 105.112.227.7] [Length 127426] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=2c3a0e3d" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/__root.tsx" [Client 105.112.227.7] [Length 4854] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/reset-password.tsx" [Client 105.112.227.7] [Length 17124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8f63c541" [Client 105.112.227.7] [Length 925355] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=ffea9462" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/recover-password.tsx" [Client 105.112.227.7] [Length 12650] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/login.tsx" [Client 105.112.227.7] [Length 18469] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout.tsx" [Client 105.112.227.7] [Length 6193] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/index.tsx" [Client 105.112.227.7] [Length 5228] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:01:59:24 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/items.tsx" [Client 105.112.227.7] [Length 25279] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/settings.tsx" [Client 105.112.227.7] [Length 9799] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/admin.tsx" [Client 105.112.227.7] [Length 21681] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:01:59:25 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/core/ApiError.ts" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:01:59:25 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/core/CancelablePromise.ts" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:01:59:25 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/core/OpenAPI.ts" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:01:59:25 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/models.ts" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:01:59:25 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/schemas.ts" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:01:59:25 +0000] - 304 304 - GET https otowo.duckdns.org "/src/client/services.ts" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-Z43TZB5X.js?v=8f63c541" [Client 105.112.227.7] [Length 330459] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@chakra-ui_react.js?v=a6267847" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/NotFound.tsx" [Client 105.112.227.7] [Length 6109] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-hook-form.js?v=aef1beca" [Client 105.112.227.7] [Length 72121] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useAuth.ts" [Client 105.112.227.7] [Length 6272] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useCustomToast.ts" [Client 105.112.227.7] [Length 1912] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:01:59:25 +0000] - 304 304 - GET https otowo.duckdns.org "/src/utils.ts" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_icons.js?v=c0db13c1" [Client 105.112.227.7] [Length 37295] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[03/Dec/2024:01:59:25 +0000] - 304 304 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg?import" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Sidebar.tsx" [Client 105.112.227.7] [Length 21263] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/UserMenu.tsx" [Client 105.112.227.7] [Length 9337] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/ActionsMenu.tsx" [Client 105.112.227.7] [Length 11136] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[03/Dec/2024:01:59:25 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Navbar.tsx" [Client 105.112.227.7] [Length 7175] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/ChangePassword.tsx" [Client 105.112.227.7] [Length 19915] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteAccount.tsx" [Client 105.112.227.7] [Length 5964] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/Appearance.tsx" [Client 105.112.227.7] [Length 7182] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:01:59:25 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/zod.js?v=05647919" [Client 105.112.227.7] [Length 111603] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/UserInformation.tsx" [Client 105.112.227.7] [Length 22510] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/request.ts" [Client 105.112.227.7] [Length 33141] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/services.ts" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/axios.js?v=1d0a0350" [Client 105.112.227.7] [Length 67970] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/hooks/useAuth.ts" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/SidebarItems.tsx" [Client 105.112.227.7] [Length 8591] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fi.js?v=4f223d31" [Client 105.112.227.7] [Length 149381] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/EditItem.tsx" [Client 105.112.227.7] [Length 18988] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/EditUser.tsx" [Client 105.112.227.7] [Length 31239] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/DeleteAlert.tsx" [Client 105.112.227.7] [Length 15745] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/AddUser.tsx" [Client 105.112.227.7] [Length 32605] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/AddItem.tsx" [Client 105.112.227.7] [Length 18724] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteConfirmation.tsx" [Client 105.112.227.7] [Length 14748] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/UserSettings/DeleteAccount.tsx" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-I6VZC2OZ.js?v=8f63c541" [Client 105.112.227.7] [Length 5016] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-icons_fi.js?v=4f223d31" +[03/Dec/2024:01:59:26 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_bs.js?v=e39959ca" [Client 105.112.227.7] [Length 1847548] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:01:59:27 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fa.js?v=dc58f135" [Client 105.112.227.7] [Length 1407409] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +[03/Dec/2024:01:59:28 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=6fd99576" [Client 105.112.227.7] [Length 6949] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[03/Dec/2024:01:59:28 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_router-devtools.js?v=a2e532bd" [Client 105.112.227.7] [Length 97708] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[03/Dec/2024:01:59:28 +0000] - 304 304 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[03/Dec/2024:01:59:29 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-PJWIUSLW.js?v=8f63c541" [Client 105.112.227.7] [Length 93780] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=6fd99576" +[03/Dec/2024:01:59:29 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/WIIHGP5G-53S2SJXP.js?v=8f63c541" [Client 105.112.227.7] [Length 453971] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=6fd99576" +[03/Dec/2024:01:59:36 +0000] - - 502 - GET https otowo.duckdns.org "/prometheus/" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:01:59:37 +0000] - 404 404 - GET https otowo.duckdns.org "/favicon.ico" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/" +[03/Dec/2024:01:59:43 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:01:59:51 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:00:06 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:00:12 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:00:33 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:00:40 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:00:45 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:01:00 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:01:02 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:01:15 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:01:36 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:01:47 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:01:58 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:02:01 +0000] - - 502 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 556] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:30:55 +0000] - 401 401 - GET https otowo.duckdns.org "/grafana/api/live/ws" [Client 105.112.227.7] [Length 105] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:33:19 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/targets" [Client 105.112.227.7] [Length 869] [Gzip 2.04] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:33:20 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/assets/index-Bm6642QA.css" [Client 105.112.227.7] [Length 223049] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[03/Dec/2024:02:33:21 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/assets/index-1SrvQFrd.js" [Client 105.112.227.7] [Length 2571158] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[03/Dec/2024:02:33:22 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/scrape_pools" [Client 105.112.227.7] [Length 116] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[03/Dec/2024:02:33:22 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/targets?state=active&scrapePool=" [Client 105.112.227.7] [Length 587] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[03/Dec/2024:02:34:12 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[03/Dec/2024:02:34:33 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/targets?state=active&scrapePool=cadvisor" [Client 105.112.227.7] [Length 325] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets?health=up&pool=cadvisor" +[03/Dec/2024:02:34:41 +0000] - 200 200 - GET https otowo.duckdns.org "/prometheus/api/v1/targets?state=active&scrapePool=" [Client 105.112.227.7] [Length 585] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets?health=up" +[03/Dec/2024:02:35:00 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets" +[03/Dec/2024:02:35:43 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets?health=up" +[03/Dec/2024:02:35:57 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets?health=up" +[03/Dec/2024:02:37:10 +0000] - 200 499 - GET https otowo.duckdns.org "/prometheus/api/v1/notifications/live" [Client 105.112.227.7] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/prometheus/targets?health=up" +[03/Dec/2024:02:37:42 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 35.195.157.58] [Length 417] [Gzip 1.75] [Sent-to frontend] "python-requests/2.32.3" "-" +[03/Dec/2024:02:50:17 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 45.141.152.77] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:50:17 +0000] - 200 200 - GET https otowo.duckdns.org "/@vite/client" [Client 45.141.152.77] [Length 95079] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[03/Dec/2024:02:50:17 +0000] - 200 200 - GET https otowo.duckdns.org "/src/main.tsx" [Client 45.141.152.77] [Length 4923] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[03/Dec/2024:02:50:17 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=0d80cb3b" [Client 45.141.152.77] [Length 35991] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:02:50:17 +0000] - 200 200 - GET https otowo.duckdns.org "/@react-refresh" [Client 45.141.152.77] [Length 73093] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[03/Dec/2024:02:50:17 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query.js?v=563e9a63" [Client 45.141.152.77] [Length 1979] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:02:50:17 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-router.js?v=02130bf1" [Client 45.141.152.77] [Length 4131] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:02:50:17 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-dom_client.js?v=82620756" [Client 45.141.152.77] [Length 1118] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:02:50:17 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routeTree.gen.ts" [Client 45.141.152.77] [Length 8551] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:02:50:17 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react.js?v=8cb430d9" [Client 45.141.152.77] [Length 219] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/index.ts" [Client 45.141.152.77] [Length 1163] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/theme.tsx" [Client 45.141.152.77] [Length 4532] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/vite/dist/client/env.mjs" [Client 45.141.152.77] [Length 3226] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/@vite/client" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_react.js?v=76f14bea" [Client 45.141.152.77] [Length 916563] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-TIUEEL27.js?v=2807fa78" [Client 45.141.152.77] [Length 3168] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=0d80cb3b" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-H7PNMJDI.js?v=2807fa78" [Client 45.141.152.77] [Length 36324] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=563e9a63" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-QVJRRYHF.js?v=2807fa78" [Client 45.141.152.77] [Length 77791] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=0d80cb3b" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-XUSVWCLU.js?v=2807fa78" [Client 45.141.152.77] [Length 490] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=02130bf1" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/__root.tsx" [Client 45.141.152.77] [Length 4854] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/reset-password.tsx" [Client 45.141.152.77] [Length 17124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-WLNUW44W.js?v=2807fa78" [Client 45.141.152.77] [Length 107113] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=563e9a63" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 45.141.152.77] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=2807fa78" [Client 45.141.152.77] [Length 127426] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=02130bf1" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/recover-password.tsx" [Client 45.141.152.77] [Length 12650] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=2807fa78" [Client 45.141.152.77] [Length 925355] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=82620756" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/login.tsx" [Client 45.141.152.77] [Length 18469] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout.tsx" [Client 45.141.152.77] [Length 6193] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/index.tsx" [Client 45.141.152.77] [Length 5228] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/settings.tsx" [Client 45.141.152.77] [Length 9799] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/items.tsx" [Client 45.141.152.77] [Length 25279] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/admin.tsx" [Client 45.141.152.77] [Length 21681] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/ApiError.ts" [Client 45.141.152.77] [Length 2665] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/CancelablePromise.ts" [Client 45.141.152.77] [Length 11940] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/OpenAPI.ts" [Client 45.141.152.77] [Length 4614] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/models.ts" [Client 45.141.152.77] [Length 2523] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/schemas.ts" [Client 45.141.152.77] [Length 23087] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/services.ts" [Client 45.141.152.77] [Length 31514] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/NotFound.tsx" [Client 45.141.152.77] [Length 6109] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useAuth.ts" [Client 45.141.152.77] [Length 6272] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useCustomToast.ts" [Client 45.141.152.77] [Length 1912] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/src/utils.ts" [Client 45.141.152.77] [Length 3261] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_icons.js?v=0c5cdebc" [Client 45.141.152.77] [Length 37295] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-hook-form.js?v=95380ad8" [Client 45.141.152.77] [Length 72121] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:02:50:18 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg?import" [Client 45.141.152.77] [Length 403] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/login.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Sidebar.tsx" [Client 45.141.152.77] [Length 21263] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/UserMenu.tsx" [Client 45.141.152.77] [Length 9337] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-3HOHBJ6D.js?v=2807fa78" [Client 45.141.152.77] [Length 330459] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@chakra-ui_react.js?v=76f14bea" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/Appearance.tsx" [Client 45.141.152.77] [Length 7182] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/ChangePassword.tsx" [Client 45.141.152.77] [Length 19915] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteAccount.tsx" [Client 45.141.152.77] [Length 5964] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/UserInformation.tsx" [Client 45.141.152.77] [Length 22510] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/zod.js?v=9e5f9424" [Client 45.141.152.77] [Length 111603] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/ActionsMenu.tsx" [Client 45.141.152.77] [Length 11136] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Navbar.tsx" [Client 45.141.152.77] [Length 7175] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/request.ts" [Client 45.141.152.77] [Length 33141] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/client/services.ts" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/axios.js?v=ea52a103" [Client 45.141.152.77] [Length 67970] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/hooks/useAuth.ts" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fi.js?v=5797f825" [Client 45.141.152.77] [Length 149381] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/SidebarItems.tsx" [Client 45.141.152.77] [Length 8591] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteConfirmation.tsx" [Client 45.141.152.77] [Length 14748] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/UserSettings/DeleteAccount.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/EditUser.tsx" [Client 45.141.152.77] [Length 31239] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/EditItem.tsx" [Client 45.141.152.77] [Length 18988] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/DeleteAlert.tsx" [Client 45.141.152.77] [Length 15745] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fa.js?v=71bc2292" [Client 45.141.152.77] [Length 1407409] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/AddUser.tsx" [Client 45.141.152.77] [Length 32605] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_bs.js?v=0552c162" [Client 45.141.152.77] [Length 1847548] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/AddItem.tsx" [Client 45.141.152.77] [Length 18724] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-I6VZC2OZ.js?v=2807fa78" [Client 45.141.152.77] [Length 5016] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/react-icons_fi.js?v=5797f825" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=915fe5eb" [Client 45.141.152.77] [Length 6949] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_router-devtools.js?v=9dbd7ac0" [Client 45.141.152.77] [Length 97708] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/src/routes/__root.tsx" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg" [Client 45.141.152.77] [Length 6309] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 45.141.152.77] [Length 5043] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[03/Dec/2024:02:50:19 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-PJWIUSLW.js?v=2807fa78" [Client 45.141.152.77] [Length 93780] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=915fe5eb" +[03/Dec/2024:02:50:19 +0000] - 304 304 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 45.141.152.77] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[03/Dec/2024:02:50:20 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/WIIHGP5G-53S2SJXP.js?v=2807fa78" [Client 45.141.152.77] [Length 453971] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=915fe5eb" +[03/Dec/2024:02:50:20 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 45.141.152.77] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://otowo.duckdns.org/login" +[03/Dec/2024:04:03:09 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 141.148.153.213] [Length 709] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:03:09 +0000] - 404 404 - GET https otowo.duckdns.org "/favicon.ico" [Client 141.148.153.213] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:03:09 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 141.148.153.213] [Length 708] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:03:09 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 141.148.153.213] [Length 5043] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:09:38 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 86.135.47.240] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:09:42 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 197.242.159.250] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0" "-" +[03/Dec/2024:04:09:46 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 23.137.253.109] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:10:26 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 86.135.47.240] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:10:28 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 86.135.47.240] [Length 5043] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:10:32 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 197.242.159.250] [Length 5043] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0" "-" +[03/Dec/2024:04:10:34 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 197.242.159.250] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0" "-" +[03/Dec/2024:04:10:39 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 172.104.243.155] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:10:40 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 198.98.48.33] [Length 5043] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:11:32 +0000] - 404 404 - GET https otowo.duckdns.org "/favicon.ico" [Client 51.81.33.188] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:24:45 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 38.95.13.141] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:24:46 +0000] - 200 200 - GET https otowo.duckdns.org "/@vite/client" [Client 38.95.13.141] [Length 95079] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/" +[03/Dec/2024:04:24:46 +0000] - 200 200 - GET https otowo.duckdns.org "/src/main.tsx" [Client 38.95.13.141] [Length 4923] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/" +[03/Dec/2024:04:24:46 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/vite/dist/client/env.mjs" [Client 38.95.13.141] [Length 3226] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/@vite/client" +[03/Dec/2024:04:24:46 +0000] - 200 200 - GET https otowo.duckdns.org "/@react-refresh" [Client 38.95.13.141] [Length 73093] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/" +[03/Dec/2024:04:24:46 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=0d80cb3b" [Client 38.95.13.141] [Length 35991] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:04:24:47 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-router.js?v=02130bf1" [Client 38.95.13.141] [Length 4131] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:04:24:47 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query.js?v=563e9a63" [Client 38.95.13.141] [Length 1979] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:04:24:47 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-dom_client.js?v=82620756" [Client 38.95.13.141] [Length 1118] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:04:24:47 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/index.ts" [Client 38.95.13.141] [Length 1163] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:04:24:47 +0000] - 200 200 - GET https otowo.duckdns.org "/src/theme.tsx" [Client 38.95.13.141] [Length 4532] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:04:24:47 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react.js?v=8cb430d9" [Client 38.95.13.141] [Length 219] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:04:24:47 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routeTree.gen.ts" [Client 38.95.13.141] [Length 8551] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:04:24:47 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-TIUEEL27.js?v=2807fa78" [Client 38.95.13.141] [Length 3168] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=0d80cb3b" +[03/Dec/2024:04:24:47 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-QVJRRYHF.js?v=2807fa78" [Client 38.95.13.141] [Length 77791] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/node_modules/.vite/deps/react_jsx-dev-runtime.js?v=0d80cb3b" +[03/Dec/2024:04:24:47 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-H7PNMJDI.js?v=2807fa78" [Client 38.95.13.141] [Length 36324] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=563e9a63" +[03/Dec/2024:04:24:47 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-XUSVWCLU.js?v=2807fa78" [Client 38.95.13.141] [Length 490] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=02130bf1" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 38.95.13.141] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-WLNUW44W.js?v=2807fa78" [Client 38.95.13.141] [Length 107113] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=563e9a63" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/ApiError.ts" [Client 38.95.13.141] [Length 2665] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=2807fa78" [Client 38.95.13.141] [Length 127426] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=02130bf1" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/CancelablePromise.ts" [Client 38.95.13.141] [Length 11940] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/OpenAPI.ts" [Client 38.95.13.141] [Length 4614] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/models.ts" [Client 38.95.13.141] [Length 2523] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/schemas.ts" [Client 38.95.13.141] [Length 23087] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/services.ts" [Client 38.95.13.141] [Length 31514] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/client/index.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/__root.tsx" [Client 38.95.13.141] [Length 4854] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/reset-password.tsx" [Client 38.95.13.141] [Length 17124] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/recover-password.tsx" [Client 38.95.13.141] [Length 12650] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=2807fa78" [Client 38.95.13.141] [Length 925355] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=82620756" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/login.tsx" [Client 38.95.13.141] [Length 18469] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout.tsx" [Client 38.95.13.141] [Length 6193] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/index.tsx" [Client 38.95.13.141] [Length 5228] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/settings.tsx" [Client 38.95.13.141] [Length 9799] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:04:24:48 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/items.tsx" [Client 38.95.13.141] [Length 25279] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/routes/_layout/admin.tsx" [Client 38.95.13.141] [Length 21681] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routeTree.gen.ts" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/client/core/request.ts" [Client 38.95.13.141] [Length 33141] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/client/services.ts" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-hook-form.js?v=95380ad8" [Client 38.95.13.141] [Length 72121] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useAuth.ts" [Client 38.95.13.141] [Length 6272] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/hooks/useCustomToast.ts" [Client 38.95.13.141] [Length 1912] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/utils.ts" [Client 38.95.13.141] [Length 3261] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/reset-password.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/NotFound.tsx" [Client 38.95.13.141] [Length 6109] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/__root.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_icons.js?v=0c5cdebc" [Client 38.95.13.141] [Length 37295] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/login.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@chakra-ui_react.js?v=76f14bea" [Client 38.95.13.141] [Length 916563] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/main.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg?import" [Client 38.95.13.141] [Length 403] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/login.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Sidebar.tsx" [Client 38.95.13.141] [Length 21263] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/UserMenu.tsx" [Client 38.95.13.141] [Length 9337] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/_layout.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/Appearance.tsx" [Client 38.95.13.141] [Length 7182] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/ChangePassword.tsx" [Client 38.95.13.141] [Length 19915] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteAccount.tsx" [Client 38.95.13.141] [Length 5964] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/UserInformation.tsx" [Client 38.95.13.141] [Length 22510] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/_layout/settings.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/zod.js?v=9e5f9424" [Client 38.95.13.141] [Length 111603] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/ActionsMenu.tsx" [Client 38.95.13.141] [Length 11136] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/Navbar.tsx" [Client 38.95.13.141] [Length 7175] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-3HOHBJ6D.js?v=2807fa78" [Client 38.95.13.141] [Length 330459] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/node_modules/.vite/deps/@chakra-ui_icons.js?v=0c5cdebc" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/axios.js?v=ea52a103" [Client 38.95.13.141] [Length 67970] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/client/core/request.ts" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/SidebarItems.tsx" [Client 38.95.13.141] [Length 8591] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fi.js?v=5797f825" [Client 38.95.13.141] [Length 149381] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/UserSettings/DeleteConfirmation.tsx" [Client 38.95.13.141] [Length 14748] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/components/UserSettings/DeleteAccount.tsx" +[03/Dec/2024:04:24:49 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/AddUser.tsx" [Client 38.95.13.141] [Length 32605] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[03/Dec/2024:04:24:50 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/AddItem.tsx" [Client 38.95.13.141] [Length 18724] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +[03/Dec/2024:04:24:50 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Admin/EditUser.tsx" [Client 38.95.13.141] [Length 31239] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:04:24:50 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Items/EditItem.tsx" [Client 38.95.13.141] [Length 18988] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:04:24:50 +0000] - 200 200 - GET https otowo.duckdns.org "/src/components/Common/DeleteAlert.tsx" [Client 38.95.13.141] [Length 15745] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:04:24:50 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-I6VZC2OZ.js?v=2807fa78" [Client 38.95.13.141] [Length 5016] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/node_modules/.vite/deps/react-icons_fi.js?v=5797f825" +[03/Dec/2024:04:24:50 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_fa.js?v=71bc2292" [Client 38.95.13.141] [Length 1407409] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +[03/Dec/2024:04:24:51 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/react-icons_bs.js?v=0552c162" [Client 38.95.13.141] [Length 1847548] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +[03/Dec/2024:04:24:51 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_router-devtools.js?v=9dbd7ac0" [Client 38.95.13.141] [Length 97708] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/__root.tsx" +[03/Dec/2024:04:24:51 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=915fe5eb" [Client 38.95.13.141] [Length 6949] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/src/routes/__root.tsx" +[03/Dec/2024:04:24:51 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/fastapi-logo.svg" [Client 38.95.13.141] [Length 6309] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/login" +[03/Dec/2024:04:24:51 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 38.95.13.141] [Length 5043] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/login" +[03/Dec/2024:04:24:51 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/chunk-PJWIUSLW.js?v=2807fa78" [Client 38.95.13.141] [Length 93780] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=915fe5eb" +[03/Dec/2024:04:24:51 +0000] - 304 304 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 38.95.13.141] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/login" +[03/Dec/2024:04:24:52 +0000] - 200 200 - GET https otowo.duckdns.org "/node_modules/.vite/deps/WIIHGP5G-53S2SJXP.js?v=2807fa78" [Client 38.95.13.141] [Length 453971] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=915fe5eb" +[03/Dec/2024:04:24:52 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 38.95.13.141] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "https://otowo.duckdns.org/login" +[03/Dec/2024:04:25:41 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 38.95.13.141] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:04:25:42 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 38.95.13.141] [Length 5043] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:12:35:33 +0000] - 200 200 - GET https otowo.duckdns.org "/robots.txt" [Client 171.244.43.14] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36" "-" +[03/Dec/2024:12:35:33 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 171.244.43.14] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36" "-" +[03/Dec/2024:13:19:24 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 162.142.125.214] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[03/Dec/2024:13:19:26 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 162.142.125.214] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[03/Dec/2024:13:19:26 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 162.142.125.214] [Length 5043] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[03/Dec/2024:13:19:26 +0000] - 404 404 - GET https otowo.duckdns.org "/favicon.ico" [Client 162.142.125.214] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[03/Dec/2024:14:00:27 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 141.148.153.213] [Length 709] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:14:00:28 +0000] - 404 404 - GET https otowo.duckdns.org "/favicon.ico" [Client 141.148.153.213] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:14:00:28 +0000] - 200 200 - GET https otowo.duckdns.org "/assets/images/favicon.png" [Client 141.148.153.213] [Length 5043] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:14:00:28 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 141.148.153.213] [Length 708] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1" "-" +[03/Dec/2024:16:04:22 +0000] - 200 200 - HEAD https otowo.duckdns.org "/" [Client 195.211.77.140] [Length 0] [Gzip -] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" +[03/Dec/2024:16:04:43 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 195.211.77.142] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" "-" +[03/Dec/2024:17:12:25 +0000] - 301 301 - GET https otowo.duckdns.org "/prometheus//api/v1/status/buildinfo" [Client 23.236.58.169] [Length 70] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[03/Dec/2024:22:04:41 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 54.179.187.23] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36" "-" +[03/Dec/2024:23:39:43 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 104.166.80.194] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" +[04/Dec/2024:17:12:25 +0000] - 301 301 - GET https otowo.duckdns.org "/prometheus//api/v1/status/buildinfo" [Client 23.236.58.169] [Length 70] [Gzip -] [Sent-to frontend] "Grafana/11.3.1" "-" +[04/Dec/2024:18:49:30 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 167.71.231.217] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "-" +[04/Dec/2024:18:49:37 +0000] - 200 200 - GET https otowo.duckdns.org "/vite.svg" [Client 167.71.231.217] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" "https://otowo.duckdns.org/" +[04/Dec/2024:19:53:23 +0000] - 200 200 - GET https otowo.duckdns.org "/.git/config" [Client 18.132.193.48] [Length 416] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (compatible; Konqueror/4.5; Windows) KHTML/4.5.4 (like Gecko)" "-" +[05/Dec/2024:00:10:06 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 104.166.80.162] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" +[05/Dec/2024:01:07:33 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 18.140.59.244] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (Linux; Android 12; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.61 Mobile Safari/537.36" "-" +[05/Dec/2024:07:21:40 +0000] - 200 200 - GET https otowo.duckdns.org "/" [Client 104.166.80.134] [Length 417] [Gzip 1.75] [Sent-to frontend] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" diff --git a/proxy/data/logs/proxy-host-1_error.log b/proxy/data/logs/proxy-host-1_error.log new file mode 100644 index 00000000..66b25b03 --- /dev/null +++ b/proxy/data/logs/proxy-host-1_error.log @@ -0,0 +1,116 @@ +2024/12/02 22:17:06 [warn] 220#220: *270 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/main.tsx" +2024/12/02 22:17:07 [warn] 220#220: *277 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000000002 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-WLNUW44W.js?v=8e815fc3 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-WLNUW44W.js?v=8e815fc3", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=4edaffc8" +2024/12/02 22:17:07 [warn] 220#220: *282 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000000003 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-6YVH6SSW.js?v=8e815fc3 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=8e815fc3", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=99342c17" +2024/12/02 22:17:08 [warn] 220#220: *277 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000000004 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8e815fc3 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8e815fc3", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=ad3f0fe0" +2024/12/02 22:17:10 [warn] 219#219: *281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000000005 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_fa.js?v=780784ba HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_fa.js?v=780784ba", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +2024/12/02 22:17:11 [warn] 220#220: *270 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/00/0000000006 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_bs.js?v=87f1c93e HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_bs.js?v=87f1c93e", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +2024/12/02 22:28:21 [warn] 220#220: *462 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/00/0000000007 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/main.tsx" +2024/12/02 22:28:22 [warn] 219#219: *475 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/00/0000000008 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-6YVH6SSW.js?v=8e815fc3 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=8e815fc3", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=99342c17" +2024/12/02 22:28:22 [warn] 219#219: *472 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/00/0000000009 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8e815fc3 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8e815fc3", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=ad3f0fe0" +2024/12/02 22:28:26 [warn] 220#220: *465 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/01/0000000010 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_fa.js?v=780784ba HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_fa.js?v=780784ba", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +2024/12/02 22:28:26 [warn] 219#219: *472 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/01/0000000011 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_bs.js?v=87f1c93e HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_bs.js?v=87f1c93e", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +2024/12/02 22:28:31 [warn] 220#220: *412 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/01/0000000012 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /grafana/public/build/6029.0549a3fcb50e73c4b256.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/6029.0549a3fcb50e73c4b256.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:32 [warn] 220#220: *427 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/01/0000000013 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /grafana/public/build/9636.b941a14f2c41910ad58c.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/9636.b941a14f2c41910ad58c.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:32 [warn] 220#220: *411 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/01/0000000014 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /grafana/public/build/4239.c2eca2b0222ddf40980b.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/4239.c2eca2b0222ddf40980b.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:32 [warn] 220#220: *410 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/01/0000000015 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /grafana/public/build/322.fcd895da48f9c276a57d.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/322.fcd895da48f9c276a57d.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:33 [warn] 220#220: *426 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/01/0000000016 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /grafana/public/build/app.573d087f3f9bd7c53cd0.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/app.573d087f3f9bd7c53cd0.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:37 [warn] 219#219: *555 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/01/0000000017 while reading upstream, client: 196.49.26.134, server: otowo.duckdns.org, request: "GET /grafana/public/build/4239.c2eca2b0222ddf40980b.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/4239.c2eca2b0222ddf40980b.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:37 [warn] 219#219: *561 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/01/0000000018 while reading upstream, client: 196.49.26.134, server: otowo.duckdns.org, request: "GET /grafana/public/build/6029.0549a3fcb50e73c4b256.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/6029.0549a3fcb50e73c4b256.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:37 [warn] 219#219: *556 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/01/0000000019 while reading upstream, client: 102.67.30.228, server: otowo.duckdns.org, request: "GET /grafana/public/build/6029.0549a3fcb50e73c4b256.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/6029.0549a3fcb50e73c4b256.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:37 [warn] 219#219: *566 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/02/0000000020 while reading upstream, client: 196.49.26.134, server: otowo.duckdns.org, request: "GET /grafana/public/build/3719.c065b2e146c4c8347d51.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/3719.c065b2e146c4c8347d51.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:37 [warn] 219#219: *571 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/02/0000000021 while reading upstream, client: 196.49.26.134, server: otowo.duckdns.org, request: "GET /grafana/public/build/322.fcd895da48f9c276a57d.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/322.fcd895da48f9c276a57d.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:37 [warn] 219#219: *567 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/02/0000000022 while reading upstream, client: 196.49.26.134, server: otowo.duckdns.org, request: "GET /grafana/public/build/9636.b941a14f2c41910ad58c.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/9636.b941a14f2c41910ad58c.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:37 [warn] 219#219: *565 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/02/0000000023 while reading upstream, client: 102.67.30.228, server: otowo.duckdns.org, request: "GET /grafana/public/build/4239.c2eca2b0222ddf40980b.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/4239.c2eca2b0222ddf40980b.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:38 [warn] 219#219: *573 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/02/0000000024 while reading upstream, client: 102.67.30.228, server: otowo.duckdns.org, request: "GET /grafana/public/build/9636.b941a14f2c41910ad58c.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/9636.b941a14f2c41910ad58c.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:38 [warn] 220#220: *575 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/02/0000000025 while reading upstream, client: 102.67.30.228, server: otowo.duckdns.org, request: "GET /grafana/public/build/3719.c065b2e146c4c8347d51.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/3719.c065b2e146c4c8347d51.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:38 [warn] 219#219: *556 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/02/0000000026 while reading upstream, client: 102.67.30.228, server: otowo.duckdns.org, request: "GET /grafana/public/build/app.573d087f3f9bd7c53cd0.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/app.573d087f3f9bd7c53cd0.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:28:38 [warn] 220#220: *576 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/02/0000000027 while reading upstream, client: 102.67.30.228, server: otowo.duckdns.org, request: "GET /grafana/public/build/322.fcd895da48f9c276a57d.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/322.fcd895da48f9c276a57d.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:29:19 [warn] 219#219: *653 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/02/0000000028 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /grafana/public/build/4239.c2eca2b0222ddf40980b.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/4239.c2eca2b0222ddf40980b.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:29:19 [warn] 219#219: *660 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/02/0000000029 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /grafana/public/build/6029.0549a3fcb50e73c4b256.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/6029.0549a3fcb50e73c4b256.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:29:20 [warn] 219#219: *664 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/03/0000000030 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /grafana/public/build/9636.b941a14f2c41910ad58c.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/9636.b941a14f2c41910ad58c.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:29:20 [warn] 219#219: *665 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/03/0000000031 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /grafana/public/build/3719.c065b2e146c4c8347d51.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/3719.c065b2e146c4c8347d51.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:29:20 [warn] 219#219: *666 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/03/0000000032 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /grafana/public/build/322.fcd895da48f9c276a57d.js HTTP/1.1", upstream: "http://172.18.0.3:3000/grafana/public/build/322.fcd895da48f9c276a57d.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/02 22:29:38 [warn] 219#219: *707 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/03/0000000033 while reading upstream, client: 196.49.26.134, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/@chakra-ui_react.js?v=6877497e", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/main.tsx" +2024/12/02 22:29:39 [warn] 220#220: *711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/03/0000000034 while reading upstream, client: 196.49.26.134, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8e815fc3 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8e815fc3", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=ad3f0fe0" +2024/12/02 22:29:42 [warn] 220#220: *710 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/03/0000000035 while reading upstream, client: 196.49.26.134, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_fi.js?v=b59980ed HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_fi.js?v=b59980ed", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +2024/12/02 22:29:42 [warn] 220#220: *719 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/03/0000000036 while reading upstream, client: 196.49.26.134, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_fa.js?v=780784ba HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_fa.js?v=780784ba", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +2024/12/02 22:29:42 [warn] 220#220: *720 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/03/0000000037 while reading upstream, client: 196.49.26.134, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_bs.js?v=87f1c93e HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_bs.js?v=87f1c93e", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +2024/12/02 22:32:10 [warn] 220#220: *879 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/03/0000000038 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /prometheus/assets/index-1SrvQFrd.js HTTP/1.1", upstream: "http://172.18.0.2:9090/prometheus/assets/index-1SrvQFrd.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/prometheus/query" +2024/12/02 22:35:10 [warn] 184#184: *40 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/@chakra-ui_react.js?v=41546697 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/@chakra-ui_react.js?v=41546697", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/main.tsx" +2024/12/02 22:35:11 [warn] 184#184: *44 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000000002 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-6YVH6SSW.js?v=f62d281e HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=f62d281e", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=4bddc7a6" +2024/12/02 22:35:11 [warn] 184#184: *36 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000000003 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-EL3PUDHE.js?v=f62d281e HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=f62d281e", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=162c2dbe" +2024/12/02 22:35:13 [warn] 184#184: *35 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000000004 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-Z43TZB5X.js?v=f62d281e HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-Z43TZB5X.js?v=f62d281e", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@chakra-ui_react.js?v=41546697" +2024/12/02 22:35:13 [warn] 184#184: *43 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000000005 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_fi.js?v=1f9e58aa HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_fi.js?v=1f9e58aa", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +2024/12/02 22:35:13 [warn] 183#183: *46 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/00/0000000006 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_fa.js?v=8bfac334 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_fa.js?v=8bfac334", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +2024/12/02 22:35:14 [warn] 184#184: *44 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/00/0000000007 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_bs.js?v=5bf6ac55 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_bs.js?v=5bf6ac55", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +2024/12/02 22:35:16 [warn] 184#184: *43 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/00/0000000008 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /prometheus/assets/index-1SrvQFrd.js HTTP/1.1", upstream: "http://172.18.0.5:9090/prometheus/assets/index-1SrvQFrd.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/prometheus/query" +2024/12/02 22:35:17 [warn] 183#183: *112 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/00/0000000009 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /prometheus/assets/index-Bm6642QA.css HTTP/1.1", upstream: "http://172.18.0.5:9090/prometheus/assets/index-Bm6642QA.css", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/prometheus/query" +2024/12/02 22:45:52 [warn] 209#209: *341 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/01/0000000010 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /grafana/public/img/plugins/snowflake.svg HTTP/1.1", upstream: "http://172.18.0.9:3000/grafana/public/img/plugins/snowflake.svg", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/connections/datasources/new" +2024/12/02 22:45:53 [warn] 209#209: *357 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/01/0000000011 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /grafana/public/build/3346.27d8c509370d16b89dae.js HTTP/1.1", upstream: "http://172.18.0.9:3000/grafana/public/build/3346.27d8c509370d16b89dae.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/connections/datasources/edit/ce5qw9nr2utq8e" +2024/12/02 22:52:27 [warn] 208#208: *568 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/01/0000000012 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /grafana/public/build/7049.14f2acbbdf538c5a95ca.js HTTP/1.1", upstream: "http://172.18.0.9:3000/grafana/public/build/7049.14f2acbbdf538c5a95ca.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/connections/datasources/edit/fe5qwuq3s3k00f" +2024/12/02 22:54:09 [warn] 209#209: *611 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/01/0000000013 while reading upstream, client: 105.112.124.40, server: otowo.duckdns.org, request: "GET /grafana/api/gnet/plugins/gridprotectionalliance-osisoftpi-datasource/versions/5.1.0/logos/small HTTP/1.1", upstream: "http://172.18.0.9:3000/grafana/api/gnet/plugins/gridprotectionalliance-osisoftpi-datasource/versions/5.1.0/logos/small", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/connections/add-new-connection" +2024/12/02 23:04:02 [warn] 208#208: *1195 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/01/0000000014 while reading upstream, client: 105.112.228.208, server: otowo.duckdns.org, request: "GET /grafana/public/build/1460.3c4e7eda72470dc619a2.js HTTP/1.1", upstream: "http://172.18.0.9:3000/grafana/public/build/1460.3c4e7eda72470dc619a2.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +2024/12/02 23:04:03 [warn] 208#208: *1196 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/01/0000000015 while reading upstream, client: 105.112.228.208, server: otowo.duckdns.org, request: "GET /grafana/public/build/8477.5a149b2dc106a4cdce43.js HTTP/1.1", upstream: "http://172.18.0.9:3000/grafana/public/build/8477.5a149b2dc106a4cdce43.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +2024/12/02 23:04:03 [warn] 208#208: *1202 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/01/0000000016 while reading upstream, client: 105.112.228.208, server: otowo.duckdns.org, request: "GET /grafana/public/build/react-monaco-editor.5d00e21b6521b3c7086f.js HTTP/1.1", upstream: "http://172.18.0.9:3000/grafana/public/build/react-monaco-editor.5d00e21b6521b3c7086f.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +2024/12/02 23:06:38 [warn] 209#209: *1249 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/01/0000000017 while reading upstream, client: 105.112.228.208, server: otowo.duckdns.org, request: "POST /grafana/api/ds/query?ds_type=loki&requestId=SQR158_1 HTTP/1.1", upstream: "http://172.18.0.9:3000/grafana/api/ds/query?ds_type=loki&requestId=SQR158_1", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +2024/12/02 23:08:11 [warn] 209#209: *1290 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/01/0000000018 while reading upstream, client: 142.111.105.55, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/@chakra-ui_react.js?v=41546697 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/@chakra-ui_react.js?v=41546697", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/main.tsx" +2024/12/02 23:08:11 [warn] 208#208: *1297 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/01/0000000019 while reading upstream, client: 142.111.105.55, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-EL3PUDHE.js?v=f62d281e HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=f62d281e", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=162c2dbe" +2024/12/02 23:08:13 [warn] 208#208: *1298 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/02/0000000020 while reading upstream, client: 142.111.105.55, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_bs.js?v=5bf6ac55 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_bs.js?v=5bf6ac55", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +2024/12/02 23:08:14 [warn] 209#209: *1289 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/02/0000000021 while reading upstream, client: 142.111.105.55, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_fa.js?v=8bfac334 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_fa.js?v=8bfac334", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/Navbar.tsx" +2024/12/02 23:09:22 [warn] 208#208: *1396 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/02/0000000022 while reading upstream, client: 105.112.228.208, server: otowo.duckdns.org, request: "POST /grafana/api/ds/query?ds_type=loki&requestId=SQR161_1 HTTP/1.1", upstream: "http://172.18.0.9:3000/grafana/api/ds/query?ds_type=loki&requestId=SQR161_1", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +2024/12/02 23:26:39 [warn] 208#208: *1757 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/02/0000000023 while reading upstream, client: 105.112.228.208, server: otowo.duckdns.org, request: "GET /grafana/public/build/5995.093dfee3c4cfd184e057.js HTTP/1.1", upstream: "http://172.18.0.9:3000/grafana/public/build/5995.093dfee3c4cfd184e057.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-5m&to=now&timezone=browser&editPanel=1" +2024/12/02 23:43:59 [warn] 208#208: *2074 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/02/0000000024 while reading upstream, client: 105.112.228.208, server: otowo.duckdns.org, request: "POST /grafana/api/ds/query?ds_type=loki&requestId=SQR120_1 HTTP/1.1", upstream: "http://172.18.0.9:3000/grafana/api/ds/query?ds_type=loki&requestId=SQR120_1", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +2024/12/02 23:55:45 [warn] 180#180: *87 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 105.112.228.208, server: otowo.duckdns.org, request: "POST /grafana/api/ds/query?ds_type=loki&requestId=SQR101_1 HTTP/1.1", upstream: "http://172.18.0.2:3000/grafana/api/ds/query?ds_type=loki&requestId=SQR101_1", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +2024/12/03 00:02:03 [warn] 180#180: *186 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000000002 while reading upstream, client: 105.112.228.208, server: otowo.duckdns.org, request: "POST /grafana/api/ds/query?ds_type=loki&requestId=SQR102_1 HTTP/1.1", upstream: "http://172.18.0.2:3000/grafana/api/ds/query?ds_type=loki&requestId=SQR102_1", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +2024/12/03 00:02:14 [warn] 180#180: *204 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000000003 while reading upstream, client: 105.112.228.208, server: otowo.duckdns.org, request: "POST /grafana/api/ds/query?ds_type=loki&requestId=SQR104_1 HTTP/1.1", upstream: "http://172.18.0.2:3000/grafana/api/ds/query?ds_type=loki&requestId=SQR104_1", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +2024/12/03 00:02:23 [warn] 180#180: *207 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000000004 while reading upstream, client: 105.112.228.208, server: otowo.duckdns.org, request: "POST /grafana/api/ds/query?ds_type=loki&requestId=SQR105_1 HTTP/1.1", upstream: "http://172.18.0.2:3000/grafana/api/ds/query?ds_type=loki&requestId=SQR105_1", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/dashboard/new?orgId=1&from=now-6h&to=now&timezone=browser&editPanel=1" +2024/12/03 00:51:44 [warn] 186#186: *24 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /grafana/public/build/4239.c2eca2b0222ddf40980b.js HTTP/1.1", upstream: "http://172.18.0.2:3000/grafana/public/build/4239.c2eca2b0222ddf40980b.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/03 00:51:44 [warn] 186#186: *35 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000000002 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /grafana/public/build/6029.0549a3fcb50e73c4b256.js HTTP/1.1", upstream: "http://172.18.0.2:3000/grafana/public/build/6029.0549a3fcb50e73c4b256.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/03 00:51:44 [warn] 185#185: *38 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000000003 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /grafana/public/build/9636.b941a14f2c41910ad58c.js HTTP/1.1", upstream: "http://172.18.0.2:3000/grafana/public/build/9636.b941a14f2c41910ad58c.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/03 00:51:44 [warn] 186#186: *40 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000000004 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /grafana/public/build/3719.c065b2e146c4c8347d51.js HTTP/1.1", upstream: "http://172.18.0.2:3000/grafana/public/build/3719.c065b2e146c4c8347d51.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/03 00:51:44 [warn] 186#186: *41 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000000005 while reading upstream, client: 105.112.127.132, server: otowo.duckdns.org, request: "GET /grafana/public/build/322.fcd895da48f9c276a57d.js HTTP/1.1", upstream: "http://172.18.0.2:3000/grafana/public/build/322.fcd895da48f9c276a57d.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/grafana/login" +2024/12/03 01:58:53 [error] 185#185: *1 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 01:59:04 [error] 184#184: *3 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 01:59:17 [error] 185#185: *9 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 01:59:23 [warn] 185#185: *13 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/@chakra-ui_react.js?v=a6267847 HTTP/1.1", upstream: "http://172.18.0.6:5173/node_modules/.vite/deps/@chakra-ui_react.js?v=a6267847", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/main.tsx" +2024/12/03 01:59:23 [warn] 185#185: *14 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000000002 while reading upstream, client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-WLNUW44W.js?v=8f63c541 HTTP/1.1", upstream: "http://172.18.0.6:5173/node_modules/.vite/deps/chunk-WLNUW44W.js?v=8f63c541", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=564f9227" +2024/12/03 01:59:24 [warn] 185#185: *10 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000000003 while reading upstream, client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-6YVH6SSW.js?v=8f63c541 HTTP/1.1", upstream: "http://172.18.0.6:5173/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=8f63c541", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=2c3a0e3d" +2024/12/03 01:59:24 [warn] 185#185: *14 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000000004 while reading upstream, client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8f63c541 HTTP/1.1", upstream: "http://172.18.0.6:5173/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=8f63c541", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=ffea9462" +2024/12/03 01:59:25 [warn] 185#185: *23 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000000005 while reading upstream, client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/zod.js?v=05647919 HTTP/1.1", upstream: "http://172.18.0.6:5173/node_modules/.vite/deps/zod.js?v=05647919", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/routes/_layout/items.tsx" +2024/12/03 01:59:25 [error] 185#185: *58 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 01:59:26 [warn] 185#185: *10 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/00/0000000006 while reading upstream, client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_fi.js?v=4f223d31 HTTP/1.1", upstream: "http://172.18.0.6:5173/node_modules/.vite/deps/react-icons_fi.js?v=4f223d31", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/Sidebar.tsx" +2024/12/03 01:59:26 [warn] 185#185: *24 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/00/0000000007 while reading upstream, client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_fa.js?v=dc58f135 HTTP/1.1", upstream: "http://172.18.0.6:5173/node_modules/.vite/deps/react-icons_fa.js?v=dc58f135", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +2024/12/03 01:59:26 [warn] 185#185: *13 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/00/0000000008 while reading upstream, client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_bs.js?v=e39959ca HTTP/1.1", upstream: "http://172.18.0.6:5173/node_modules/.vite/deps/react-icons_bs.js?v=e39959ca", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +2024/12/03 01:59:29 [warn] 185#185: *21 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/00/0000000009 while reading upstream, client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/WIIHGP5G-53S2SJXP.js?v=8f63c541 HTTP/1.1", upstream: "http://172.18.0.6:5173/node_modules/.vite/deps/WIIHGP5G-53S2SJXP.js?v=8f63c541", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query-devtools.js?v=6fd99576" +2024/12/03 01:59:36 [error] 185#185: *90 prometheus could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /prometheus/ HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 01:59:43 [error] 185#185: *97 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 01:59:51 [error] 185#185: *98 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:00:06 [error] 185#185: *99 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:00:12 [error] 185#185: *103 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:00:33 [error] 185#185: *104 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:00:40 [error] 185#185: *106 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:00:45 [error] 184#184: *110 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:01:00 [error] 184#184: *111 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:01:02 [error] 184#184: *112 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:01:15 [error] 184#184: *117 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:01:36 [error] 184#184: *118 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:01:47 [error] 184#184: *123 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:01:58 [error] 184#184: *124 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:02:01 [error] 184#184: *125 grafana could not be resolved (2: Server failure), client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /grafana/api/live/ws HTTP/1.1", host: "otowo.duckdns.org" +2024/12/03 02:33:19 [warn] 184#184: *5 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /prometheus/assets/index-Bm6642QA.css HTTP/1.1", upstream: "http://172.18.0.2:9090/prometheus/assets/index-Bm6642QA.css", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/prometheus/targets" +2024/12/03 02:33:19 [warn] 185#185: *4 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000000002 while reading upstream, client: 105.112.227.7, server: otowo.duckdns.org, request: "GET /prometheus/assets/index-1SrvQFrd.js HTTP/1.1", upstream: "http://172.18.0.2:9090/prometheus/assets/index-1SrvQFrd.js", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/prometheus/targets" +2024/12/03 02:50:17 [warn] 185#185: *39 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000000003 while reading upstream, client: 45.141.152.77, server: otowo.duckdns.org, request: "GET /@vite/client HTTP/1.1", upstream: "http://172.18.0.11:5173/@vite/client", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/" +2024/12/03 02:50:17 [warn] 185#185: *39 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000000004 while reading upstream, client: 45.141.152.77, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/@chakra-ui_react.js?v=76f14bea HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/@chakra-ui_react.js?v=76f14bea", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/main.tsx" +2024/12/03 02:50:18 [warn] 185#185: *47 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000000005 while reading upstream, client: 45.141.152.77, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-WLNUW44W.js?v=2807fa78 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-WLNUW44W.js?v=2807fa78", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=563e9a63" +2024/12/03 02:50:18 [warn] 184#184: *49 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/00/0000000006 while reading upstream, client: 45.141.152.77, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-6YVH6SSW.js?v=2807fa78 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=2807fa78", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=02130bf1" +2024/12/03 02:50:18 [warn] 185#185: *42 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/00/0000000007 while reading upstream, client: 45.141.152.77, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-EL3PUDHE.js?v=2807fa78 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=2807fa78", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=82620756" +2024/12/03 02:50:18 [warn] 184#184: *48 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/00/0000000008 while reading upstream, client: 45.141.152.77, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-3HOHBJ6D.js?v=2807fa78 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-3HOHBJ6D.js?v=2807fa78", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@chakra-ui_react.js?v=76f14bea" +2024/12/03 02:50:19 [warn] 185#185: *42 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/00/0000000009 while reading upstream, client: 45.141.152.77, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_fa.js?v=71bc2292 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_fa.js?v=71bc2292", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +2024/12/03 02:50:19 [warn] 185#185: *39 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/01/0000000010 while reading upstream, client: 45.141.152.77, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_bs.js?v=0552c162 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_bs.js?v=0552c162", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" +2024/12/03 04:24:46 [warn] 184#184: *160 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/01/0000000011 while reading upstream, client: 38.95.13.141, server: otowo.duckdns.org, request: "GET /@vite/client HTTP/1.1", upstream: "http://172.18.0.11:5173/@vite/client", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/" +2024/12/03 04:24:47 [warn] 184#184: *160 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/01/0000000012 while reading upstream, client: 38.95.13.141, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/@chakra-ui_react.js?v=76f14bea HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/@chakra-ui_react.js?v=76f14bea", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/main.tsx" +2024/12/03 04:24:47 [warn] 185#185: *172 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/01/0000000013 while reading upstream, client: 38.95.13.141, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-WLNUW44W.js?v=2807fa78 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-WLNUW44W.js?v=2807fa78", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-query.js?v=563e9a63" +2024/12/03 04:24:47 [warn] 184#184: *171 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/01/0000000014 while reading upstream, client: 38.95.13.141, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-6YVH6SSW.js?v=2807fa78 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-6YVH6SSW.js?v=2807fa78", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/@tanstack_react-router.js?v=02130bf1" +2024/12/03 04:24:48 [warn] 184#184: *163 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/01/0000000015 while reading upstream, client: 38.95.13.141, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/chunk-EL3PUDHE.js?v=2807fa78 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/chunk-EL3PUDHE.js?v=2807fa78", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/node_modules/.vite/deps/react-dom_client.js?v=82620756" +2024/12/03 04:24:49 [warn] 185#185: *172 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/01/0000000016 while reading upstream, client: 38.95.13.141, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_fa.js?v=71bc2292 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_fa.js?v=71bc2292", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/UserMenu.tsx" +2024/12/03 04:24:50 [warn] 184#184: *170 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/01/0000000017 while reading upstream, client: 38.95.13.141, server: otowo.duckdns.org, request: "GET /node_modules/.vite/deps/react-icons_bs.js?v=0552c162 HTTP/1.1", upstream: "http://172.18.0.11:5173/node_modules/.vite/deps/react-icons_bs.js?v=0552c162", host: "otowo.duckdns.org", referrer: "https://otowo.duckdns.org/src/components/Common/ActionsMenu.tsx" diff --git a/proxy/data/logs/proxy-host-2_access.log b/proxy/data/logs/proxy-host-2_access.log new file mode 100644 index 00000000..843f6508 --- /dev/null +++ b/proxy/data/logs/proxy-host-2_access.log @@ -0,0 +1,5 @@ +[02/Dec/2024:22:45:21 +0000] - 200 200 - GET https db.otowo.duckdns.org "/" [Client 105.112.124.40] [Length 2022] [Gzip 2.23] [Sent-to adminer] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "-" +[02/Dec/2024:22:45:21 +0000] - 200 200 - GET https db.otowo.duckdns.org "/?file=default.css&version=4.8.1" [Client 105.112.124.40] [Length 6830] [Gzip -] [Sent-to adminer] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://db.otowo.duckdns.org/" +[02/Dec/2024:22:45:21 +0000] - 200 200 - GET https db.otowo.duckdns.org "/?file=functions.js&version=4.8.1" [Client 105.112.124.40] [Length 27584] [Gzip -] [Sent-to adminer] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://db.otowo.duckdns.org/" +[02/Dec/2024:22:45:23 +0000] - 200 200 - POST https db.otowo.duckdns.org "/?script=version" [Client 105.112.124.40] [Length 31] [Gzip 0.00] [Sent-to adminer] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://db.otowo.duckdns.org/" +[02/Dec/2024:22:45:23 +0000] - 200 200 - GET https db.otowo.duckdns.org "/?file=favicon.ico&version=4.8.1" [Client 105.112.124.40] [Length 330] [Gzip -] [Sent-to adminer] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://db.otowo.duckdns.org/" diff --git a/proxy/data/logs/proxy-host-2_error.log b/proxy/data/logs/proxy-host-2_error.log new file mode 100644 index 00000000..e69de29b diff --git a/proxy/data/nginx/proxy_host/1.conf b/proxy/data/nginx/proxy_host/1.conf new file mode 100644 index 00000000..365b77ad --- /dev/null +++ b/proxy/data/nginx/proxy_host/1.conf @@ -0,0 +1,226 @@ +# ------------------------------------------------------------ +# otowo.duckdns.org +# ------------------------------------------------------------ + + + +map $scheme $hsts_header { + https "max-age=63072000; preload"; +} + +server { + set $forward_scheme http; + set $server "frontend"; + set $port 5173; + + listen 80; +listen [::]:80; + +listen 443 ssl; +listen [::]:443 ssl; + + + server_name otowo.duckdns.org; + + + # Let's Encrypt SSL + include conf.d/include/letsencrypt-acme-challenge.conf; + include conf.d/include/ssl-ciphers.conf; + ssl_certificate /etc/letsencrypt/live/npm-11/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/npm-11/privkey.pem; + + + + + + + + + + + + + # Force SSL + include conf.d/include/force-ssl.conf; + + + + + + access_log /data/logs/proxy-host-1_access.log proxy; + error_log /data/logs/proxy-host-1_error.log warn; + + + + location / { + + + proxy_set_header Host $host; + proxy_set_header X-Forwarded-Scheme $scheme; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Forwarded-For $remote_addr; + proxy_set_header X-Real-IP $remote_addr; + + set $proxy_forward_scheme http; + set $proxy_server "frontend"; + set $proxy_port 5173; + + proxy_pass $proxy_forward_scheme://$proxy_server:$proxy_port; + + + + + + + # Force SSL + include conf.d/include/force-ssl.conf; + + + + + + + + + + } + + location /api { + + + proxy_set_header Host $host; + proxy_set_header X-Forwarded-Scheme $scheme; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Forwarded-For $remote_addr; + proxy_set_header X-Real-IP $remote_addr; + + set $proxy_forward_scheme http; + set $proxy_server "backend"; + set $proxy_port 8000; + + proxy_pass $proxy_forward_scheme://$proxy_server:$proxy_port; + + + + + + + # Force SSL + include conf.d/include/force-ssl.conf; + + + + + + + + + + } + + location /docs { + + + proxy_set_header Host $host; + proxy_set_header X-Forwarded-Scheme $scheme; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Forwarded-For $remote_addr; + proxy_set_header X-Real-IP $remote_addr; + + set $proxy_forward_scheme http; + set $proxy_server "backend"; + set $proxy_port 8000; + + proxy_pass $proxy_forward_scheme://$proxy_server:$proxy_port; + + + + + + + # Force SSL + include conf.d/include/force-ssl.conf; + + + + + + + + + + } + + location /prometheus { + + + proxy_set_header Host $host; + proxy_set_header X-Forwarded-Scheme $scheme; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Forwarded-For $remote_addr; + proxy_set_header X-Real-IP $remote_addr; + + set $proxy_forward_scheme http; + set $proxy_server "prometheus"; + set $proxy_port 9090; + + proxy_pass $proxy_forward_scheme://$proxy_server:$proxy_port; + + + + + + + # Force SSL + include conf.d/include/force-ssl.conf; + + + + + + + + + + } + + location /grafana { + + + proxy_set_header Host $host; + proxy_set_header X-Forwarded-Scheme $scheme; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Forwarded-For $remote_addr; + proxy_set_header X-Real-IP $remote_addr; + + set $proxy_forward_scheme http; + set $proxy_server "grafana"; + set $proxy_port 3000; + + proxy_pass $proxy_forward_scheme://$proxy_server:$proxy_port; + + + + + + + # Force SSL + include conf.d/include/force-ssl.conf; + + + + + + + + + + } + + + + + + # Custom + include /data/nginx/custom/server_proxy[.]conf; +} diff --git a/proxy/data/nginx/proxy_host/2.conf b/proxy/data/nginx/proxy_host/2.conf new file mode 100644 index 00000000..c979eaae --- /dev/null +++ b/proxy/data/nginx/proxy_host/2.conf @@ -0,0 +1,111 @@ +# ------------------------------------------------------------ +# db.otowo.duckdns.org +# ------------------------------------------------------------ + + + +map $scheme $hsts_header { + https "max-age=63072000; preload"; +} + +server { + set $forward_scheme http; + set $server "adminer"; + set $port 8080; + + listen 80; +listen [::]:80; + +listen 443 ssl; +listen [::]:443 ssl; + + + server_name db.otowo.duckdns.org; + + + # Let's Encrypt SSL + include conf.d/include/letsencrypt-acme-challenge.conf; + include conf.d/include/ssl-ciphers.conf; + ssl_certificate /etc/letsencrypt/live/npm-11/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/npm-11/privkey.pem; + + + + + + + + + + + + + # Force SSL + include conf.d/include/force-ssl.conf; + + + + + + access_log /data/logs/proxy-host-2_access.log proxy; + error_log /data/logs/proxy-host-2_error.log warn; + + + + location /adminer { + + + proxy_set_header Host $host; + proxy_set_header X-Forwarded-Scheme $scheme; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Forwarded-For $remote_addr; + proxy_set_header X-Real-IP $remote_addr; + + set $proxy_forward_scheme http; + set $proxy_server "adminer"; + set $proxy_port 8080; + + proxy_pass $proxy_forward_scheme://$proxy_server:$proxy_port; + + + + + + + # Force SSL + include conf.d/include/force-ssl.conf; + + + + + + + + + + } + + + + + + location / { + + + + + + + + + + + + # Proxy! + include conf.d/include/proxy.conf; + } + + + # Custom + include /data/nginx/custom/server_proxy[.]conf; +} diff --git a/proxy/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/2710f3b5010fbfd238ea112f77f8c59c/meta.json b/proxy/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/2710f3b5010fbfd238ea112f77f8c59c/meta.json new file mode 100644 index 00000000..f5bf1c02 --- /dev/null +++ b/proxy/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/2710f3b5010fbfd238ea112f77f8c59c/meta.json @@ -0,0 +1 @@ +{"creation_dt": "2024-11-30T20:01:44Z", "creation_host": "3bb69410472f"} \ No newline at end of file diff --git a/proxy/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/2710f3b5010fbfd238ea112f77f8c59c/private_key.json b/proxy/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/2710f3b5010fbfd238ea112f77f8c59c/private_key.json new file mode 100644 index 00000000..091f8221 --- /dev/null +++ b/proxy/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/2710f3b5010fbfd238ea112f77f8c59c/private_key.json @@ -0,0 +1 @@ +{"n": "xknnzG-w8Qli2nkjNJjyEQk9-dzujqSw_taB7GwE0PlkkG77AG5I3jCFHE6FAwsP1VVcKLAnUfiFl8ieVESiyAa2yH6DOpWz4sV8C6_UdPN6BVXqUuzwO1n02vCCHck3j4EZavcqv05Yf47Gn0UmheuJossxSLjtiF4YA5tG-E2bX1FN0Rdkb6VfeYSTwS2sgvFvL7LT6LKcUtL34u-5HTfYGEhoAyEPpl84kp6qiB34l9VgVrrqAlgter-ywI3nhNKugLgHm-y9KCEtOXr8zERAdXer5jTvGXxfuZm1VTTLa2YnIMK5FqYvHxLhJ0dO4hykdcyHLsFU9qHL9bQ_xw", "e": "AQAB", "d": "O7UJXV_McegXoh2T4kSjr0mPJevG0aD5wuKooJ4uHRbblzozzn9m5bDKhCmIl8_-5ogbhgz06hPhdkDsnAdG1OBgraKatUtarVA19_bsDIM8HNswAeRiuhxuRHbjV0C9wDJpivH-JzjaIR7G5DKYVP8FpMV2g6VbsRJUPNHG3wFGvIrSAPx0zvNR5Wizt_7pW9ssc1oE5OB932rpJ94xCepPEVHNDxi1zAfStf8sWWNzUWeccXz3ydhXaV3HeIdtTJcnXpTtbuMzi757EG_aQ7yQrhIPh7AlcS4GbC_jwFT00GC2ohkewgv5MX0kFprLs5DVfIXi83nAcUIdnHNYoQ", "p": "_fwXJfRRzi2cDZbeZRcsfFiVx-cAXuzlUux1ec7DKj1_2cKrGDpByW46pgMU-tqOoZjrQ4tY60g16kKlmis-u1o0B2Jy9ohAfB_Ch5JtQfXnGrYYxLIoWFbYUpjXwJZorcnEn8XEQ2gfoDhkkmvV92Z4Ij4HCS4glBXyAx7yEg8", "q": "x9yuicgWbzfj5WZJY1l2hSbL8JJtSML210tsjyP7qnO-akVPSjiETJ492_zR6a8RPNUATCfpGbMMlQcaKbqbTC62kx42y_YqQ3w2z5gFANEIy2ysln3QsWomK8QufCz6E1b-PkiaJRtu--c_Ue0-7S5sUu2njvPugwmYRFskzsk", "dp": "z4yYkgB0dSraUlSOSkfEp5xwUZoYuHmX8MqgOTjYTYVSG-4ziKnaprN4I79y_odpdO6Umm6d7C7nOBbcYv6h1dIhoEM4NPQk1gnSGp1ywSskfrR9ywbXZ1EYl26lKJEA27t8_R9MgdTtuy06KlkK0ZAf7cOIVl0mbDz-tsQsBss", "dq": "FlK3y_vlRZbghYbfO5GKg2TJ8pzoR_A-0d1CytoiCe_TnNsQ-CFH5abnEeMzLv621iyUU-1BQ_WTujGI4pBNOD0fd18wj6d3IQKGvLkmFelDKjWBMW3sGWTZzpmi94uugup8i0hgrzRZORmjIOt209cTkk-pH3ZvdYNk1n23psE", "qi": "9P7v7eTcA4eSlHQvJcXHxuHjwg-MCtkrBXpC3ROTWlsi6oOeoKnCrEP5ty3LYviVLCmKXGb1NWZ0RxkQafKZuLFa7gq8jCuI4-fV_bNaRrFEJ_Kny_mpICq2jy1D2RIUa7aGM4OYL_j0YgDbP8YJP1BqDDS-7tNjyNuZoXx2cpM", "kty": "RSA"} \ No newline at end of file diff --git a/proxy/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/2710f3b5010fbfd238ea112f77f8c59c/regr.json b/proxy/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/2710f3b5010fbfd238ea112f77f8c59c/regr.json new file mode 100644 index 00000000..7369dffc --- /dev/null +++ b/proxy/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/2710f3b5010fbfd238ea112f77f8c59c/regr.json @@ -0,0 +1 @@ +{"body": {}, "uri": "https://acme-v02.api.letsencrypt.org/acme/acct/2086794357"} \ No newline at end of file diff --git a/proxy/letsencrypt/archive/npm-11/cert1.pem b/proxy/letsencrypt/archive/npm-11/cert1.pem new file mode 100644 index 00000000..3ed43fb9 --- /dev/null +++ b/proxy/letsencrypt/archive/npm-11/cert1.pem @@ -0,0 +1,22 @@ +-----BEGIN CERTIFICATE----- +MIIDojCCAyigAwIBAgISBNJ+RS2wZuyGhdwLorTT/ZxJMAoGCCqGSM49BAMDMDIx +CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF +NjAeFw0yNDEyMDIyMDQ2NTFaFw0yNTAzMDIyMDQ2NTBaMBwxGjAYBgNVBAMTEW90 +b3dvLmR1Y2tkbnMub3JnMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEs6tc9Qkqax2V +V60mac5IzkBfQb5/LZmbZciw7+spCKee1VCmZopFztAE0QhtQMAgkzrKBfrClhnt +1X70pa7n0mDMu20Jc7PEh24jEDJV0R1mM8rutL5Yydtn10iw45KUo4ICFTCCAhEw +DgYDVR0PAQH/BAQDAgeAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM +BgNVHRMBAf8EAjAAMB0GA1UdDgQWBBStw8LsOM3E7vkC8J+wmYC/BT4hmDAfBgNV +HSMEGDAWgBSTJ0aYA6lRaI6Y1sRCSNsjv1iU0jBVBggrBgEFBQcBAQRJMEcwIQYI +KwYBBQUHMAGGFWh0dHA6Ly9lNi5vLmxlbmNyLm9yZzAiBggrBgEFBQcwAoYWaHR0 +cDovL2U2LmkubGVuY3Iub3JnLzAcBgNVHREEFTATghFvdG93by5kdWNrZG5zLm9y +ZzATBgNVHSAEDDAKMAgGBmeBDAECATCCAQYGCisGAQQB1nkCBAIEgfcEgfQA8gB3 +AH1ZHhLheCp7HGFnfF79+NCHXBSgTpWeuQMv2Q6MLnm4AAABk4lVzlUAAAQDAEgw +RgIhAIN8ssx+BsYyz3ONgzkb8vTkg9kIbEZn7LAANNhyL0awAiEA7+jm7sQHlEFO +h/peBUW3JCkp5xvy1lPOFikoiwAq0QcAdwCi4wrkRe+9rZt+OO1HZ3dT14JbhJTX +K14bLMS5UKRH5wAAAZOJVc5KAAAEAwBIMEYCIQDcdfUsCAi0j9U8eoy3dvNkx97f +qL2vr04f81yVcSLmAwIhAM+FdU3Uopm6qezgIsejHieqCnKNGReZQnt5npnJJSm5 +MAoGCCqGSM49BAMDA2gAMGUCMGQDJI5xmQKSdYXQqBv15RJVzlsyFuVtpZSs2RHY +52VeKGt61gw2dvI2Lyt/q0PmkAIxAONzI0yK9bPBTMFaGvtwfi38CrIvZWuF213R +pjHN1vVV7cei/vktSN6S6e4kJF6DHQ== +-----END CERTIFICATE----- diff --git a/proxy/letsencrypt/archive/npm-11/chain1.pem b/proxy/letsencrypt/archive/npm-11/chain1.pem new file mode 100644 index 00000000..65797c8a --- /dev/null +++ b/proxy/letsencrypt/archive/npm-11/chain1.pem @@ -0,0 +1,26 @@ +-----BEGIN CERTIFICATE----- +MIIEVzCCAj+gAwIBAgIRALBXPpFzlydw27SHyzpFKzgwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjQwMzEzMDAwMDAw +WhcNMjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg +RW5jcnlwdDELMAkGA1UEAxMCRTYwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATZ8Z5G +h/ghcWCoJuuj+rnq2h25EqfUJtlRFLFhfHWWvyILOR/VvtEKRqotPEoJhC6+QJVV +6RlAN2Z17TJOdwRJ+HB7wxjnzvdxEP6sdNgA1O1tHHMWMxCcOrLqbGL0vbijgfgw +gfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcD +ATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSTJ0aYA6lRaI6Y1sRCSNsj +v1iU0jAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcB +AQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0g +BAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVu +Y3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAfYt7SiA1sgWGCIpunk46r4AExIRc +MxkKgUhNlrrv1B21hOaXN/5miE+LOTbrcmU/M9yvC6MVY730GNFoL8IhJ8j8vrOL +pMY22OP6baS1k9YMrtDTlwJHoGby04ThTUeBDksS9RiuHvicZqBedQdIF65pZuhp +eDcGBcLiYasQr/EO5gxxtLyTmgsHSOVSBcFOn9lgv7LECPq9i7mfH3mpxgrRKSxH +pOoZ0KXMcB+hHuvlklHntvcI0mMMQ0mhYj6qtMFStkF1RpCG3IPdIwpVCQqu8GV7 +s8ubknRzs+3C/Bm19RFOoiPpDkwvyNfvmQ14XkyqqKK5oZ8zhD32kFRQkxa8uZSu +h4aTImFxknu39waBxIRXE4jKxlAmQc4QjFZoq1KmQqQg0J/1JF8RlFvJas1VcjLv +YlvUB2t6npO6oQjB3l+PNf0DpQH7iUx3Wz5AjQCi6L25FjyE06q6BZ/QlmtYdl/8 +ZYao4SRqPEs/6cAiF+Qf5zg2UkaWtDphl1LKMuTNLotvsX99HP69V2faNyegodQ0 +LyTApr/vT01YPE46vNsDLgK+4cL6TrzC/a4WcmF5SRJ938zrv/duJHLXQIku5v0+ +EwOy59Hdm0PT/Er/84dDV0CSjdR/2XuZM3kpysSKLgD1cKiDA+IRguODCxfO9cyY +Ig46v9mFmBvyH04= +-----END CERTIFICATE----- diff --git a/proxy/letsencrypt/archive/npm-11/fullchain1.pem b/proxy/letsencrypt/archive/npm-11/fullchain1.pem new file mode 100644 index 00000000..3a0705dd --- /dev/null +++ b/proxy/letsencrypt/archive/npm-11/fullchain1.pem @@ -0,0 +1,48 @@ +-----BEGIN CERTIFICATE----- +MIIDojCCAyigAwIBAgISBNJ+RS2wZuyGhdwLorTT/ZxJMAoGCCqGSM49BAMDMDIx +CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF +NjAeFw0yNDEyMDIyMDQ2NTFaFw0yNTAzMDIyMDQ2NTBaMBwxGjAYBgNVBAMTEW90 +b3dvLmR1Y2tkbnMub3JnMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEs6tc9Qkqax2V +V60mac5IzkBfQb5/LZmbZciw7+spCKee1VCmZopFztAE0QhtQMAgkzrKBfrClhnt +1X70pa7n0mDMu20Jc7PEh24jEDJV0R1mM8rutL5Yydtn10iw45KUo4ICFTCCAhEw +DgYDVR0PAQH/BAQDAgeAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAM +BgNVHRMBAf8EAjAAMB0GA1UdDgQWBBStw8LsOM3E7vkC8J+wmYC/BT4hmDAfBgNV +HSMEGDAWgBSTJ0aYA6lRaI6Y1sRCSNsjv1iU0jBVBggrBgEFBQcBAQRJMEcwIQYI +KwYBBQUHMAGGFWh0dHA6Ly9lNi5vLmxlbmNyLm9yZzAiBggrBgEFBQcwAoYWaHR0 +cDovL2U2LmkubGVuY3Iub3JnLzAcBgNVHREEFTATghFvdG93by5kdWNrZG5zLm9y +ZzATBgNVHSAEDDAKMAgGBmeBDAECATCCAQYGCisGAQQB1nkCBAIEgfcEgfQA8gB3 +AH1ZHhLheCp7HGFnfF79+NCHXBSgTpWeuQMv2Q6MLnm4AAABk4lVzlUAAAQDAEgw +RgIhAIN8ssx+BsYyz3ONgzkb8vTkg9kIbEZn7LAANNhyL0awAiEA7+jm7sQHlEFO +h/peBUW3JCkp5xvy1lPOFikoiwAq0QcAdwCi4wrkRe+9rZt+OO1HZ3dT14JbhJTX +K14bLMS5UKRH5wAAAZOJVc5KAAAEAwBIMEYCIQDcdfUsCAi0j9U8eoy3dvNkx97f +qL2vr04f81yVcSLmAwIhAM+FdU3Uopm6qezgIsejHieqCnKNGReZQnt5npnJJSm5 +MAoGCCqGSM49BAMDA2gAMGUCMGQDJI5xmQKSdYXQqBv15RJVzlsyFuVtpZSs2RHY +52VeKGt61gw2dvI2Lyt/q0PmkAIxAONzI0yK9bPBTMFaGvtwfi38CrIvZWuF213R +pjHN1vVV7cei/vktSN6S6e4kJF6DHQ== +-----END CERTIFICATE----- +-----BEGIN CERTIFICATE----- +MIIEVzCCAj+gAwIBAgIRALBXPpFzlydw27SHyzpFKzgwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjQwMzEzMDAwMDAw +WhcNMjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg +RW5jcnlwdDELMAkGA1UEAxMCRTYwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATZ8Z5G +h/ghcWCoJuuj+rnq2h25EqfUJtlRFLFhfHWWvyILOR/VvtEKRqotPEoJhC6+QJVV +6RlAN2Z17TJOdwRJ+HB7wxjnzvdxEP6sdNgA1O1tHHMWMxCcOrLqbGL0vbijgfgw +gfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcD +ATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSTJ0aYA6lRaI6Y1sRCSNsj +v1iU0jAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcB +AQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0g +BAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVu +Y3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAfYt7SiA1sgWGCIpunk46r4AExIRc +MxkKgUhNlrrv1B21hOaXN/5miE+LOTbrcmU/M9yvC6MVY730GNFoL8IhJ8j8vrOL +pMY22OP6baS1k9YMrtDTlwJHoGby04ThTUeBDksS9RiuHvicZqBedQdIF65pZuhp +eDcGBcLiYasQr/EO5gxxtLyTmgsHSOVSBcFOn9lgv7LECPq9i7mfH3mpxgrRKSxH +pOoZ0KXMcB+hHuvlklHntvcI0mMMQ0mhYj6qtMFStkF1RpCG3IPdIwpVCQqu8GV7 +s8ubknRzs+3C/Bm19RFOoiPpDkwvyNfvmQ14XkyqqKK5oZ8zhD32kFRQkxa8uZSu +h4aTImFxknu39waBxIRXE4jKxlAmQc4QjFZoq1KmQqQg0J/1JF8RlFvJas1VcjLv +YlvUB2t6npO6oQjB3l+PNf0DpQH7iUx3Wz5AjQCi6L25FjyE06q6BZ/QlmtYdl/8 +ZYao4SRqPEs/6cAiF+Qf5zg2UkaWtDphl1LKMuTNLotvsX99HP69V2faNyegodQ0 +LyTApr/vT01YPE46vNsDLgK+4cL6TrzC/a4WcmF5SRJ938zrv/duJHLXQIku5v0+ +EwOy59Hdm0PT/Er/84dDV0CSjdR/2XuZM3kpysSKLgD1cKiDA+IRguODCxfO9cyY +Ig46v9mFmBvyH04= +-----END CERTIFICATE----- diff --git a/proxy/letsencrypt/archive/npm-11/privkey1.pem b/proxy/letsencrypt/archive/npm-11/privkey1.pem new file mode 100644 index 00000000..b4d1e224 --- /dev/null +++ b/proxy/letsencrypt/archive/npm-11/privkey1.pem @@ -0,0 +1,6 @@ +-----BEGIN PRIVATE KEY----- +MIG2AgEAMBAGByqGSM49AgEGBSuBBAAiBIGeMIGbAgEBBDCGYojVaqg4YYw01XWl +kQuivDDN7G+3xgm8j1hl0LK8Zl4xIg4VxfzlrOHtEr/cR3KhZANiAASzq1z1CSpr +HZVXrSZpzkjOQF9Bvn8tmZtlyLDv6ykIp57VUKZmikXO0ATRCG1AwCCTOsoF+sKW +Ge3VfvSlrufSYMy7bQlzs8SHbiMQMlXRHWYzyu60vljJ22fXSLDjkpQ= +-----END PRIVATE KEY----- diff --git a/proxy/letsencrypt/credentials/credentials-11 b/proxy/letsencrypt/credentials/credentials-11 new file mode 100644 index 00000000..bcab07cf --- /dev/null +++ b/proxy/letsencrypt/credentials/credentials-11 @@ -0,0 +1 @@ +dns_duckdns_token=4b47355c-1fc0-4a0d-b229-081e33dc130d \ No newline at end of file diff --git a/proxy/letsencrypt/live/README b/proxy/letsencrypt/live/README new file mode 100644 index 00000000..00b733c7 --- /dev/null +++ b/proxy/letsencrypt/live/README @@ -0,0 +1,14 @@ +This directory contains your keys and certificates. + +`[cert name]/privkey.pem` : the private key for your certificate. +`[cert name]/fullchain.pem`: the certificate file used in most server software. +`[cert name]/chain.pem` : used for OCSP stapling in Nginx >=1.3.7. +`[cert name]/cert.pem` : will break many server configurations, and should not be used + without reading further documentation (see link below). + +WARNING: DO NOT MOVE OR RENAME THESE FILES! + Certbot expects these files to remain in this location in order + to function properly! + +We recommend not moving these files. For more information, see the Certbot +User Guide at https://certbot.eff.org/docs/using.html#where-are-my-certificates. diff --git a/proxy/letsencrypt/live/npm-11/README b/proxy/letsencrypt/live/npm-11/README new file mode 100644 index 00000000..5050078f --- /dev/null +++ b/proxy/letsencrypt/live/npm-11/README @@ -0,0 +1,14 @@ +This directory contains your keys and certificates. + +`privkey.pem` : the private key for your certificate. +`fullchain.pem`: the certificate file used in most server software. +`chain.pem` : used for OCSP stapling in Nginx >=1.3.7. +`cert.pem` : will break many server configurations, and should not be used + without reading further documentation (see link below). + +WARNING: DO NOT MOVE OR RENAME THESE FILES! + Certbot expects these files to remain in this location in order + to function properly! + +We recommend not moving these files. For more information, see the Certbot +User Guide at https://certbot.eff.org/docs/using.html#where-are-my-certificates. diff --git a/proxy/letsencrypt/live/npm-11/cert.pem b/proxy/letsencrypt/live/npm-11/cert.pem new file mode 120000 index 00000000..c4c4f081 --- /dev/null +++ b/proxy/letsencrypt/live/npm-11/cert.pem @@ -0,0 +1 @@ +../../archive/npm-11/cert1.pem \ No newline at end of file diff --git a/proxy/letsencrypt/live/npm-11/chain.pem b/proxy/letsencrypt/live/npm-11/chain.pem new file mode 120000 index 00000000..57476e12 --- /dev/null +++ b/proxy/letsencrypt/live/npm-11/chain.pem @@ -0,0 +1 @@ +../../archive/npm-11/chain1.pem \ No newline at end of file diff --git a/proxy/letsencrypt/live/npm-11/fullchain.pem b/proxy/letsencrypt/live/npm-11/fullchain.pem new file mode 120000 index 00000000..dac6865b --- /dev/null +++ b/proxy/letsencrypt/live/npm-11/fullchain.pem @@ -0,0 +1 @@ +../../archive/npm-11/fullchain1.pem \ No newline at end of file diff --git a/proxy/letsencrypt/live/npm-11/privkey.pem b/proxy/letsencrypt/live/npm-11/privkey.pem new file mode 120000 index 00000000..4915a57d --- /dev/null +++ b/proxy/letsencrypt/live/npm-11/privkey.pem @@ -0,0 +1 @@ +../../archive/npm-11/privkey1.pem \ No newline at end of file diff --git a/proxy/letsencrypt/renewal/npm-11.conf b/proxy/letsencrypt/renewal/npm-11.conf new file mode 100644 index 00000000..9d9124ce --- /dev/null +++ b/proxy/letsencrypt/renewal/npm-11.conf @@ -0,0 +1,23 @@ +# renew_before_expiry = 30 days +version = 2.11.0 +archive_dir = /etc/letsencrypt/archive/npm-11 +cert = /etc/letsencrypt/live/npm-11/cert.pem +privkey = /etc/letsencrypt/live/npm-11/privkey.pem +chain = /etc/letsencrypt/live/npm-11/chain.pem +fullchain = /etc/letsencrypt/live/npm-11/fullchain.pem + +# Options used in the renewal process +[renewalparams] +account = 2710f3b5010fbfd238ea112f77f8c59c +key_type = ecdsa +elliptic_curve = secp384r1 +preferred_chain = ISRG Root X1 +config_dir = /etc/letsencrypt +work_dir = /tmp/letsencrypt-lib +logs_dir = /tmp/letsencrypt-log +authenticator = dns-duckdns +dns_duckdns_credentials = /etc/letsencrypt/credentials/credentials-11 +dns_duckdns_no_txt_restore = True +webroot_path = /data/letsencrypt-acme-challenge, +server = https://acme-v02.api.letsencrypt.org/directory +[[webroot_map]] diff --git a/terraform-ansible.drawio.png b/terraform-ansible.drawio.png new file mode 100644 index 00000000..e6da5bf3 Binary files /dev/null and b/terraform-ansible.drawio.png differ diff --git a/testfile.txt b/testfile.txt new file mode 100644 index 00000000..b4ce2785 --- /dev/null +++ b/testfile.txt @@ -0,0 +1 @@ +Testing workflow