Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to create "OAuth2/OpenID Provider" #12747

Open
cdgabe opened this issue Jan 21, 2025 · 1 comment
Open

Unable to create "OAuth2/OpenID Provider" #12747

cdgabe opened this issue Jan 21, 2025 · 1 comment
Labels
bug Something isn't working

Comments

@cdgabe
Copy link

cdgabe commented Jan 21, 2025

Describe the bug

On a fresh docker installation I'm trying to create a "OAuth2/OpenID Provider", but clicking on Finish button does nothing. There is no logs nor new requests in the browser. I tried creating a testing "SAML Provider" and that one works properly.

To Reproduce

Steps to reproduce the behavior:

  1. Go to 'Applications / Providers'
  2. Click on 'Create'
  3. Click on 'OAuth2/OpenID Provider'
  4. Enter all mandatory information (can be seen in the screenshot)
  5. Click on 'Finish'
  6. Nothing is hapaning, I'm staying within the modal. There are no new browser requests, there are no new logs in the Authentik Server docker container.

Expected behavior

'Finish' button to create the provider.

Image

Logs and Info

Deployment & Versions

  • Authentik: 2024.8.0
  • Deployment: Coolify v4.0.0-beta.380 (uses docker-compose)

docker-compose.yaml

services:
  authentik-server:
    image: 'ghcr.io/goauthentik/server:${AUTHENTIK_TAG:-2024.8.0}'
    restart: unless-stopped
    command: server
    environment:
      AUTHENTIK_REDIS__HOST: '${REDIS_HOST:-redis}'
      AUTHENTIK_POSTGRESQL__HOST: '${POSTGRES_HOST:-postgresql}'
      AUTHENTIK_POSTGRESQL__USER: '${SERVICE_USER_POSTGRESQL}'
      AUTHENTIK_POSTGRESQL__NAME: '${POSTGRES_DB:-authentik}'
      AUTHENTIK_POSTGRESQL__PASSWORD: '${SERVICE_PASSWORD_POSTGRESQL}'
      AUTHENTIK_SECRET_KEY: '${SERVICE_PASSWORD_64_AUTHENTIKSERVER}'
      AUTHENTIK_ERROR_REPORTING__ENABLED: '${AUTHENTIK_ERROR_REPORTING__ENABLED:-true}'
      AUTHENTIK_EMAIL__HOST: '${AUTHENTIK_EMAIL__HOST}'
      AUTHENTIK_EMAIL__PORT: '${AUTHENTIK_EMAIL__PORT}'
      AUTHENTIK_EMAIL__USERNAME: '${AUTHENTIK_EMAIL__USERNAME}'
      AUTHENTIK_EMAIL__PASSWORD: '${AUTHENTIK_EMAIL__PASSWORD}'
      AUTHENTIK_EMAIL__USE_TLS: '${AUTHENTIK_EMAIL__USE_TLS}'
      AUTHENTIK_EMAIL__USE_SSL: '${AUTHENTIK_EMAIL__USE_SSL}'
      AUTHENTIK_EMAIL__TIMEOUT: '${AUTHENTIK_EMAIL__TIMEOUT}'
      AUTHENTIK_EMAIL__FROM: '${AUTHENTIK_EMAIL__FROM}'
      SERVICE_USER_POSTGRESQL: q4nbvjA3pszXMRTZ
      SERVICE_PASSWORD_POSTGRESQL: Bfbsb6MKGIy81IZln2DuiU2Qk6FHuprR
      SERVICE_PASSWORD_64_AUTHENTIKSERVER: gtNERO4UWPfaB8TJltgY3idQIIUaXdnubTgzSQtptlZXVjxVM8Flx9bwYSi4MV08
      COOLIFY_CONTAINER_NAME: '"authentik-server-lgwko480040cg4084woogc07"'
      COOLIFY_URL: 'https://auth.office.mydomain.com:9000'
      COOLIFY_FQDN: 'auth.office.mydomain.com:9000'
    volumes:
      - '/data/coolify/services/lgwko480040cg4084woogc07/media:/media'
      - '/data/coolify/services/lgwko480040cg4084woogc07/custom-templates:/templates'
    depends_on:
      postgresql:
        condition: service_healthy
      redis:
        condition: service_healthy
    container_name: authentik-server-lgwko480040cg4084woogc07
    labels:
      - coolify.managed=true
      - coolify.version=4.0.0-beta.380
      - coolify.serviceId=16
      - coolify.type=service
      - coolify.name=authentik-server-lgwko480040cg4084woogc07
      - coolify.pullRequestId=0
      - coolify.service.subId=56
      - coolify.service.subType=application
      - traefik.enable=true
      - traefik.http.middlewares.gzip.compress=true
      - traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https
      - traefik.http.routers.http-0-lgwko480040cg4084woogc07-authentik-server.entryPoints=http
      - traefik.http.routers.http-0-lgwko480040cg4084woogc07-authentik-server.middlewares=redirect-to-https
      - 'traefik.http.routers.http-0-lgwko480040cg4084woogc07-authentik-server.rule=Host(`auth.office.mydomain.com`) && PathPrefix(`/`)'
      - traefik.http.routers.http-0-lgwko480040cg4084woogc07-authentik-server.service=http-0-lgwko480040cg4084woogc07-authentik-server
      - traefik.http.routers.https-0-lgwko480040cg4084woogc07-authentik-server.entryPoints=https
      - traefik.http.routers.https-0-lgwko480040cg4084woogc07-authentik-server.middlewares=gzip
      - 'traefik.http.routers.https-0-lgwko480040cg4084woogc07-authentik-server.rule=Host(`auth.office.mydomain.com`) && PathPrefix(`/`)'
      - traefik.http.routers.https-0-lgwko480040cg4084woogc07-authentik-server.service=https-0-lgwko480040cg4084woogc07-authentik-server
      - traefik.http.routers.https-0-lgwko480040cg4084woogc07-authentik-server.tls.certresolver=letsencrypt
      - traefik.http.routers.https-0-lgwko480040cg4084woogc07-authentik-server.tls=true
      - traefik.http.services.http-0-lgwko480040cg4084woogc07-authentik-server.loadbalancer.server.port=9000
      - traefik.http.services.https-0-lgwko480040cg4084woogc07-authentik-server.loadbalancer.server.port=9000
    networks:
      lgwko480040cg4084woogc07: null
  authentik-worker:
    image: 'ghcr.io/goauthentik/server:${AUTHENTIK_TAG:-2024.8.0}'
    restart: unless-stopped
    command: worker
    environment:
      AUTHENTIK_REDIS__HOST: '${REDIS_HOST:-redis}'
      AUTHENTIK_POSTGRESQL__HOST: '${POSTGRES_HOST:-postgresql}'
      AUTHENTIK_POSTGRESQL__USER: '${SERVICE_USER_POSTGRESQL}'
      AUTHENTIK_POSTGRESQL__NAME: '${POSTGRES_DB:-authentik}'
      AUTHENTIK_POSTGRESQL__PASSWORD: '${SERVICE_PASSWORD_POSTGRESQL}'
      AUTHENTIK_SECRET_KEY: '${SERVICE_PASSWORD_64_AUTHENTIKSERVER}'
      AUTHENTIK_ERROR_REPORTING__ENABLED: '${AUTHENTIK_ERROR_REPORTING__ENABLED}'
      AUTHENTIK_EMAIL__HOST: '${AUTHENTIK_EMAIL__HOST}'
      AUTHENTIK_EMAIL__PORT: '${AUTHENTIK_EMAIL__PORT}'
      AUTHENTIK_EMAIL__USERNAME: '${AUTHENTIK_EMAIL__USERNAME}'
      AUTHENTIK_EMAIL__PASSWORD: '${AUTHENTIK_EMAIL__PASSWORD}'
      AUTHENTIK_EMAIL__USE_TLS: '${AUTHENTIK_EMAIL__USE_TLS}'
      AUTHENTIK_EMAIL__USE_SSL: '${AUTHENTIK_EMAIL__USE_SSL}'
      AUTHENTIK_EMAIL__TIMEOUT: '${AUTHENTIK_EMAIL__TIMEOUT}'
      AUTHENTIK_EMAIL__FROM: '${AUTHENTIK_EMAIL__FROM}'
      SERVICE_USER_POSTGRESQL: q4nbvjA3pszXMRTZ
      SERVICE_PASSWORD_POSTGRESQL: Bfbsb6MKGIy81IZln2DuiU2Qk6FHuprR
      SERVICE_PASSWORD_64_AUTHENTIKSERVER: gtNERO4UWPfaB8TJltgY3idQIIUaXdnubTgzSQtptlZXVjxVM8Flx9bwYSi4MV08
      COOLIFY_CONTAINER_NAME: '"authentik-worker-lgwko480040cg4084woogc07"'
    user: root
    volumes:
      - '/var/run/docker.sock:/var/run/docker.sock'
      - '/data/coolify/services/lgwko480040cg4084woogc07/media:/media'
      - '/data/coolify/services/lgwko480040cg4084woogc07/certs:/certs'
      - '/data/coolify/services/lgwko480040cg4084woogc07/custom-templates:/templates'
    depends_on:
      postgresql:
        condition: service_healthy
      redis:
        condition: service_healthy
    container_name: authentik-worker-lgwko480040cg4084woogc07
    labels:
      - coolify.managed=true
      - coolify.version=4.0.0-beta.380
      - coolify.serviceId=16
      - coolify.type=service
      - coolify.name=authentik-worker-lgwko480040cg4084woogc07
      - coolify.pullRequestId=0
      - coolify.service.subId=57
      - coolify.service.subType=application
    networks:
      lgwko480040cg4084woogc07: null
  postgresql:
    image: 'postgres:16-alpine'
    restart: unless-stopped
    healthcheck:
      test:
        - CMD-SHELL
        - 'pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}'
      interval: 2s
      timeout: 10s
      retries: 15
    volumes:
      - 'lgwko480040cg4084woogc07_authentik-db:/var/lib/postgresql/data'
    environment:
      POSTGRES_PASSWORD: '${SERVICE_PASSWORD_POSTGRESQL}'
      POSTGRES_USER: '${SERVICE_USER_POSTGRESQL}'
      POSTGRES_DB: authentik
      SERVICE_PASSWORD_POSTGRESQL: Bfbsb6MKGIy81IZln2DuiU2Qk6FHuprR
      SERVICE_USER_POSTGRESQL: q4nbvjA3pszXMRTZ
      COOLIFY_CONTAINER_NAME: '"postgresql-lgwko480040cg4084woogc07"'
    container_name: postgresql-lgwko480040cg4084woogc07
    labels:
      - coolify.managed=true
      - coolify.version=4.0.0-beta.380
      - coolify.serviceId=16
      - coolify.type=service
      - coolify.name=postgresql-lgwko480040cg4084woogc07
      - coolify.pullRequestId=0
      - coolify.service.subId=18
      - coolify.service.subType=database
    networks:
      lgwko480040cg4084woogc07: null
  redis:
    image: 'redis:alpine'
    command: '--save 60 1 --loglevel warning'
    restart: unless-stopped
    healthcheck:
      test:
        - CMD-SHELL
        - 'redis-cli ping | grep PONG'
      interval: 2s
      timeout: 10s
      retries: 15
    volumes:
      - 'lgwko480040cg4084woogc07_redis:/data'
    container_name: redis-lgwko480040cg4084woogc07
    labels:
      - coolify.managed=true
      - coolify.version=4.0.0-beta.380
      - coolify.serviceId=16
      - coolify.type=service
      - coolify.name=redis-lgwko480040cg4084woogc07
      - coolify.pullRequestId=0
      - coolify.service.subId=19
      - coolify.service.subType=database
    networks:
      lgwko480040cg4084woogc07: null
    environment:
      COOLIFY_CONTAINER_NAME: '"redis-lgwko480040cg4084woogc07"'
volumes:
  lgwko480040cg4084woogc07_authentik-db:
    name: lgwko480040cg4084woogc07_authentik-db
  lgwko480040cg4084woogc07_redis:
    name: lgwko480040cg4084woogc07_redis
networks:
  lgwko480040cg4084woogc07:
    name: lgwko480040cg4084woogc07
    external: true
configs: {  }
secrets: {  }

Authentik Server

2025-01-21T10:05:38.713576499Z {"app_name": "authentik.sources.oauth", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.sources.oauth.tasks", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.713358"}
2025-01-21T10:05:38.714350522Z {"app_name": "authentik.sources.saml", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.sources.saml.signals", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.714158"}
2025-01-21T10:05:38.715283630Z {"app_name": "authentik.sources.scim", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.sources.scim.signals", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.715094"}
2025-01-21T10:05:38.716120468Z {"app_name": "authentik.stages.authenticator_duo", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.stages.authenticator_duo.tasks", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.715978"}
2025-01-21T10:05:38.716892383Z {"app_name": "authentik.stages.authenticator_static", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.stages.authenticator_static.signals", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.716712"}
2025-01-21T10:05:38.771622642Z {"app_name": "authentik.stages.authenticator_webauthn", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.stages.authenticator_webauthn.tasks", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.771396"}
2025-01-21T10:05:38.771987269Z {"app_name": "authentik.stages.email", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.stages.email.tasks", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.771818"}
2025-01-21T10:05:38.774828212Z {"app_name": "authentik.core", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.core.tasks", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.774612"}
2025-01-21T10:05:38.774995861Z {"app_name": "authentik.core", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.core.signals", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.774822"}
2025-01-21T10:05:38.775690758Z {"app_name": "authentik.enterprise", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.enterprise.tasks", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.775549"}
2025-01-21T10:05:38.776414201Z {"app_name": "authentik.enterprise", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.enterprise.signals", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.776230"}
2025-01-21T10:05:38.777369345Z {"app_name": "authentik.enterprise.providers.google_workspace", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.enterprise.providers.google_workspace.tasks", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.777207"}
2025-01-21T10:05:38.777932000Z {"app_name": "authentik.enterprise.providers.google_workspace", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.enterprise.providers.google_workspace.signals", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.777794"}
2025-01-21T10:05:38.778913423Z {"app_name": "authentik.enterprise.providers.microsoft_entra", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.enterprise.providers.microsoft_entra.tasks", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.778730"}
2025-01-21T10:05:38.779464359Z {"app_name": "authentik.enterprise.providers.microsoft_entra", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.enterprise.providers.microsoft_entra.signals", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.779293"}
2025-01-21T10:05:38.785733789Z {"app_name": "authentik.enterprise.providers.rac", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.enterprise.providers.rac.signals", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.785501"}
2025-01-21T10:05:38.786149510Z {"app_name": "authentik.events", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.events.tasks", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.786012"}
2025-01-21T10:05:38.786317646Z {"app_name": "authentik.events", "domain_url": null, "event": "Imported related module", "level": "info", "logger": "authentik.blueprints.apps", "module": "authentik.events.signals", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:38.786203"}
2025-01-21T10:05:40.036405629Z === Starting migration
2025-01-21T10:05:40.443309051Z Operations to perform:
2025-01-21T10:05:40.443334945Z   Apply all migrations: auth, authentik_blueprints, authentik_brands, authentik_core, authentik_crypto, authentik_enterprise, authentik_events, authentik_flows, authentik_outposts, authentik_policies, authentik_policies_dummy, authentik_policies_event_matcher, authentik_policies_expiry, authentik_policies_expression, authentik_policies_geoip, authentik_policies_password, authentik_policies_reputation, authentik_providers_google_workspace, authentik_providers_ldap, authentik_providers_microsoft_entra, authentik_providers_oauth2, authentik_providers_proxy, authentik_providers_rac, authentik_providers_radius, authentik_providers_saml, authentik_providers_scim, authentik_rbac, authentik_sources_ldap, authentik_sources_oauth, authentik_sources_plex, authentik_sources_saml, authentik_sources_scim, authentik_stages_authenticator_duo, authentik_stages_authenticator_sms, authentik_stages_authenticator_static, authentik_stages_authenticator_totp, authentik_stages_authenticator_validate, authentik_stages_authenticator_webauthn, authentik_stages_captcha, authentik_stages_consent, authentik_stages_deny, authentik_stages_dummy, authentik_stages_email, authentik_stages_identification, authentik_stages_invitation, authentik_stages_password, authentik_stages_prompt, authentik_stages_source, authentik_stages_user_delete, authentik_stages_user_login, authentik_stages_user_logout, authentik_stages_user_write, authentik_tenants, contenttypes, guardian, sessions
2025-01-21T10:05:40.628966739Z Running migrations:
2025-01-21T10:05:40.628990610Z   No migrations to apply.
2025-01-21T10:05:41.711318713Z === Starting migration
2025-01-21T10:05:41.859723726Z Operations to perform:
2025-01-21T10:05:41.859745617Z   Apply all migrations: auth, authentik_blueprints, authentik_brands, authentik_core, authentik_crypto, authentik_enterprise, authentik_events, authentik_flows, authentik_outposts, authentik_policies, authentik_policies_dummy, authentik_policies_event_matcher, authentik_policies_expiry, authentik_policies_expression, authentik_policies_geoip, authentik_policies_password, authentik_policies_reputation, authentik_providers_google_workspace, authentik_providers_ldap, authentik_providers_microsoft_entra, authentik_providers_oauth2, authentik_providers_proxy, authentik_providers_rac, authentik_providers_radius, authentik_providers_saml, authentik_providers_scim, authentik_rbac, authentik_sources_ldap, authentik_sources_oauth, authentik_sources_plex, authentik_sources_saml, authentik_sources_scim, authentik_stages_authenticator_duo, authentik_stages_authenticator_sms, authentik_stages_authenticator_static, authentik_stages_authenticator_totp, authentik_stages_authenticator_validate, authentik_stages_authenticator_webauthn, authentik_stages_captcha, authentik_stages_consent, authentik_stages_deny, authentik_stages_dummy, authentik_stages_email, authentik_stages_identification, authentik_stages_invitation, authentik_stages_password, authentik_stages_prompt, authentik_stages_source, authentik_stages_user_delete, authentik_stages_user_login, authentik_stages_user_logout, authentik_stages_user_write, authentik_tenants, contenttypes, guardian, sessions
2025-01-21T10:05:42.019031471Z Running migrations:
2025-01-21T10:05:42.019054055Z   No migrations to apply.
2025-01-21T10:05:43.749121594Z {"error":"authentik starting","event":"failed to proxy to backend","level":"warning","logger":"authentik.router","timestamp":"2025-01-21T10:05:43Z"}
2025-01-21T10:05:44.851133310Z System check identified no issues (4 silenced).
2025-01-21T10:05:44.851403245Z {"domain_url": null, "event": "releasing database lock", "level": "info", "logger": "lifecycle.migrate", "pid": 16, "schema_name": "public", "timestamp": "2025-01-21T10:05:44.851192"}
2025-01-21T10:05:45.082083561Z {"event": "Starting gunicorn 23.0.0", "level": "info", "logger": "gunicorn.error", "timestamp": 1737453945.081929}
2025-01-21T10:05:45.083173132Z {"event": "Listening at: unix:/dev/shm/authentik-core.sock (16)", "level": "info", "logger": "gunicorn.error", "timestamp": 1737453945.0830433}
2025-01-21T10:05:45.083287450Z {"event": "Using worker: lifecycle.worker.DjangoUvicornWorker", "level": "info", "logger": "gunicorn.error", "timestamp": 1737453945.0832112}
2025-01-21T10:05:45.090497583Z {"event": "Booting worker with pid: 108", "level": "info", "logger": "gunicorn.error", "timestamp": 1737453945.0901442}
2025-01-21T10:05:45.197687104Z {"event": "Booting worker with pid: 109", "level": "info", "logger": "gunicorn.error", "timestamp": 1737453945.197348}
2025-01-21T10:05:45.326172782Z {"auth_via": "unauthenticated", "domain_url": "localhost", "event": "/-/health/live/", "host": "localhost:8000", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "255.255.255.255", "request_id": "0b585ec5b69e4890994db74a7ba0e1be", "runtime": 21, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:05:45.325854", "user": "", "user_agent": "goauthentik.io/router/healthcheck"}
2025-01-21T10:05:45.450246578Z {"auth_via": "secret_key", "domain_url": "0.0.0.0", "event": "/api/v3/outposts/instances/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "127.0.0.1", "request_id": "896691eeacef4507bda840bb089e6062", "runtime": 90, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:05:45.450021", "user": "ak-outpost-1fd0027dd8d742adbb41d97a8ca1c0fc", "user_agent": "goauthentik.io/outpost/2024.8.0"}
2025-01-21T10:05:45.521181232Z {"auth_via": "secret_key", "domain_url": "0.0.0.0", "event": "/api/v3/root/config/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "127.0.0.1", "request_id": "c8a8256f4fe54ddca41105d1143f1337", "runtime": 34, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:05:45.520981", "user": "ak-outpost-1fd0027dd8d742adbb41d97a8ca1c0fc", "user_agent": "goauthentik.io/outpost/2024.8.0"}
2025-01-21T10:05:45.526819904Z {"domain_url": null, "event": "/ws/outpost/1fd0027d-d8d7-42ad-bb41-d97a8ca1c0fc/", "level": "info", "logger": "authentik.asgi", "pid": 109, "remote": "127.0.0.1", "schema_name": "public", "scheme": "ws", "timestamp": "2025-01-21T10:05:45.526564", "user_agent": "goauthentik.io/outpost/2024.8.0"}
2025-01-21T10:05:45.618569583Z {"event":"Successfully connected websocket","level":"info","logger":"authentik.outpost.ak-ws","outpost":"1fd0027d-d8d7-42ad-bb41-d97a8ca1c0fc","timestamp":"2025-01-21T10:05:45Z"}
2025-01-21T10:05:45.941800062Z {"event":"Starting Brand TLS Checker","level":"info","logger":"authentik.router.brand_tls","timestamp":"2025-01-21T10:05:45Z"}
2025-01-21T10:05:45.941825010Z {"event":"updating brand certificates","level":"info","logger":"authentik.router.brand_tls","timestamp":"2025-01-21T10:05:45Z"}
2025-01-21T10:05:46.025866757Z {"auth_via": "secret_key", "domain_url": "0.0.0.0", "event": "/api/v3/core/brands/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "127.0.0.1", "request_id": "804f2aa70cce495ab91ca5d661b2914f", "runtime": 45, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:05:46.025479", "user": "ak-outpost-1fd0027dd8d742adbb41d97a8ca1c0fc", "user_agent": "goauthentik.io/outpost/2024.8.0"}
2025-01-21T10:05:46.252635125Z {"auth_via": "secret_key", "domain_url": "0.0.0.0", "event": "/api/v3/outposts/instances/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "127.0.0.1", "request_id": "58392b4ba3704fe4b527db79697ddb53", "runtime": 68, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:05:46.252429", "user": "ak-outpost-1fd0027dd8d742adbb41d97a8ca1c0fc", "user_agent": "goauthentik.io/outpost/2024.8.0"}
2025-01-21T10:05:46.253845376Z {"event":"Starting authentik outpost","hash":"tagged","level":"info","logger":"authentik.outpost","timestamp":"2025-01-21T10:05:46Z","version":"2024.8.0"}
2025-01-21T10:05:46.373677527Z {"auth_via": "secret_key", "domain_url": "0.0.0.0", "event": "/api/v3/outposts/proxy/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "127.0.0.1", "request_id": "3eb0cac3c9f44d5a8410349fe808d5f4", "runtime": 84, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:05:46.373410", "user": "ak-outpost-1fd0027dd8d742adbb41d97a8ca1c0fc", "user_agent": "goauthentik.io/outpost/2024.8.0"}
2025-01-21T10:05:46.377041630Z {"event":"updating brand certificates","level":"info","logger":"authentik.router.brand_tls","timestamp":"2025-01-21T10:05:46Z"}
2025-01-21T10:05:46.465452184Z {"auth_via": "secret_key", "domain_url": "0.0.0.0", "event": "/api/v3/core/brands/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "127.0.0.1", "request_id": "44208023d3ed4d4997e737935c44a852", "runtime": 53, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:05:46.464939", "user": "ak-outpost-1fd0027dd8d742adbb41d97a8ca1c0fc", "user_agent": "goauthentik.io/outpost/2024.8.0"}
2025-01-21T10:05:47.077765176Z {"domain_url": null, "event": "Task published", "level": "info", "logger": "authentik.root.celery", "pid": 108, "schema_name": "public", "task_id": "a75ae5ec89754e9294f0b3095bfc743c", "task_name": "authentik.outposts.tasks.outpost_post_save", "timestamp": "2025-01-21T10:05:47.077505"}
2025-01-21T10:05:47.099355213Z {"domain_url": null, "event": "Task published", "level": "info", "logger": "authentik.root.celery", "pid": 108, "schema_name": "public", "task_id": "37f840a29e40432499e6916275e622bb", "task_name": "authentik.outposts.tasks.outpost_post_save", "timestamp": "2025-01-21T10:05:47.099026"}
2025-01-21T10:05:47.144306503Z {"domain_url": null, "event": "Task published", "level": "info", "logger": "authentik.root.celery", "pid": 108, "schema_name": "public", "task_id": "dac4a539be29432281fba35048cf9c37", "task_name": "authentik.blueprints.v1.tasks.blueprints_discovery", "timestamp": "2025-01-21T10:05:47.143993"}
2025-01-21T10:05:47.147744803Z {"domain_url": null, "event": "Task published", "level": "info", "logger": "authentik.root.celery", "pid": 108, "schema_name": "public", "task_id": "d66ed236271049ec852545f9179d5322", "task_name": "authentik.blueprints.v1.tasks.clear_failed_blueprints", "timestamp": "2025-01-21T10:05:47.147438"}
2025-01-21T10:05:47.237115637Z {"domain_url": null, "event": "Task published", "level": "info", "logger": "authentik.root.celery", "pid": 108, "schema_name": "public", "task_id": "5ebbcb508c094438850f92afdf1cfd60", "task_name": "authentik.crypto.tasks.certificate_discovery", "timestamp": "2025-01-21T10:05:47.234565"}
2025-01-21T10:05:47.269825099Z {"domain_url": null, "event": "Task published", "level": "info", "logger": "authentik.root.celery", "pid": 108, "schema_name": "public", "task_id": "07b61d5d4e424ef3a8bd5a8b641e5873", "task_name": "authentik.outposts.tasks.outpost_token_ensurer", "timestamp": "2025-01-21T10:05:47.267510"}
2025-01-21T10:05:47.295376513Z {"domain_url": null, "event": "authentik Core Worker finished starting", "level": "info", "logger": "authentik.root.signals", "pid": 108, "schema_name": "public", "timestamp": "2025-01-21T10:05:47.293839", "took_s": 2.187042}
2025-01-21T10:05:48.927437502Z {"auth_via": "unauthenticated", "domain_url": "0.0.0.0", "event": "/-/health/live/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "HEAD", "pid": 108, "remote": "127.0.0.1", "request_id": "8028dbc99a154998b659735034e74b03", "runtime": 19, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:05:48.927190", "user": "", "user_agent": "goauthentik.io/healthcheck"}
2025-01-21T10:05:50.408051667Z {"auth_via": "secret_key", "domain_url": "0.0.0.0", "event": "/api/v3/outposts/instances/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "127.0.0.1", "request_id": "97a0dc499c9e472990dbb00ce94efe44", "runtime": 93, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:05:50.407809", "user": "ak-outpost-1fd0027dd8d742adbb41d97a8ca1c0fc", "user_agent": "goauthentik.io/outpost/2024.8.0"}
2025-01-21T10:05:50.530249236Z {"auth_via": "secret_key", "domain_url": "0.0.0.0", "event": "/api/v3/outposts/proxy/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "127.0.0.1", "request_id": "4402f80bf5f14bc0907de6cc4ff85601", "runtime": 83, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:05:50.529965", "user": "ak-outpost-1fd0027dd8d742adbb41d97a8ca1c0fc", "user_agent": "goauthentik.io/outpost/2024.8.0"}
2025-01-21T10:05:50.531104182Z {"event":"updating brand certificates","level":"info","logger":"authentik.router.brand_tls","timestamp":"2025-01-21T10:05:50Z"}
2025-01-21T10:05:50.626217636Z {"auth_via": "secret_key", "domain_url": "0.0.0.0", "event": "/api/v3/core/brands/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "127.0.0.1", "request_id": "f356a1b83ac840d9a88d607c276a38f0", "runtime": 52, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:05:50.625981", "user": "ak-outpost-1fd0027dd8d742adbb41d97a8ca1c0fc", "user_agent": "goauthentik.io/outpost/2024.8.0"}
2025-01-21T10:06:19.106193311Z {"auth_via": "unauthenticated", "domain_url": "0.0.0.0", "event": "/-/health/live/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "HEAD", "pid": 109, "remote": "127.0.0.1", "request_id": "a3dc7b2ecf494a8ba3939b2c741e5c5e", "runtime": 11, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:06:19.105958", "user": "", "user_agent": "goauthentik.io/healthcheck"}
2025-01-21T10:06:25.206706424Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/if/admin/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "02d1e59b61334ba5864ae50491d6197b", "runtime": 78, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:25.206462", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:25.398884794Z {"domain_url": null, "event": "/ws/client/", "level": "info", "logger": "authentik.asgi", "pid": 108, "remote": "192.0.3.6, 192.0.3.6", "schema_name": "public", "scheme": "ws", "timestamp": "2025-01-21T10:06:25.397390", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:25.478589515Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/root/config/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "856b0cef3b0c4da3a9b5f906f2dd56da", "runtime": 73, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:25.478049", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:25.558693182Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/root/config/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "ec64c740a39f456ba46b871835c51677", "runtime": 71, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:25.558399", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:25.570598962Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/admin/version/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "94e99f769172410292f281d7a1c23bc4", "runtime": 72, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:25.570236", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:25.582829642Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/core/brands/current/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "3a40c155de4940f09ab1304e4781224a", "runtime": 76, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:25.582579", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:25.823034490Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/enterprise/license/summary/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "aafc63e24b424e65bdb7b1685181bd63", "runtime": 346, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:25.822769", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:25.830661139Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/core/brands/current/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "1108f024118c47b7a246da80f2ee5267", "runtime": 391, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:25.823430", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:25.853500612Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/admin/version/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "ef5cbf9f66704e5092ce697b1d00c312", "runtime": 345, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:25.853266", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:25.881890188Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/core/users/me/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "bf563138d376429b82d98d50689f52e4", "runtime": 417, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:25.881640", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:25.889122589Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/providers/all/types/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "a7dad34b6efe4677b91b1a247622fa86", "runtime": 85, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:25.888745", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:25.992308498Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/providers/all/?ordering=name&page=1&page_size=20&search=", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "b74a0ce8bb2a4f5caaec2e05bc6acde2", "runtime": 52, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:25.991971", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:26.107653295Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/providers/all/types/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "e8c9dd2b65144526965e5e7fc753f412", "runtime": 41, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:26.107395", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:26.263762203Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/events/notifications/?ordering=-created&seen=false&user=7", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "83f9f2c2dbd54e278d9e5cf7a3b3ca0a", "runtime": 315, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:26.263462", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:26.274585576Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/events/notifications/?ordering=-created&page_size=1&seen=false&user=7", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "8e816bcc2c12436aaf46ca2866396a4f", "runtime": 322, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:26.274333", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:32.459350981Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/propertymappings/provider/saml/?ordering=saml_name&page=1&page_size=20&search=", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "d5e39bf309c3493d8761edf2570c16c1", "runtime": 201, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:32.458967", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:32.617947858Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/crypto/certificatekeypairs/?has_key=false&include_details=false&ordering=name", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "f3b713c37e8844c994f297ba5c4e0423", "runtime": 307, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:32.617649", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:32.670606025Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/propertymappings/provider/saml/?ordering=saml_name", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "73bdccf8aa504fe696bdf1487e7517fd", "runtime": 410, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:32.670264", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:32.693693550Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/crypto/certificatekeypairs/?has_key=true&include_details=false&ordering=name", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "2ce7cf31383e420ab00cdd67040e8799", "runtime": 457, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:32.693381", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:32.696762487Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/crypto/certificatekeypairs/?has_key=true&include_details=false&ordering=name", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "bbbd4a17973c43ada592362d5889ed1a", "runtime": 435, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:32.696384", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:33.484351039Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/flows/instances/?designation=authentication&ordering=slug", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "6135aa41912d48f4ad950bc3249af3e5", "runtime": 1187, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:33.484095", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:33.489647714Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/flows/instances/?designation=authorization&ordering=slug", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "857b601d52f6424e9149131d7ffd685d", "runtime": 1185, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:33.489360", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:49.010702759Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/providers/saml/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "POST", "pid": 109, "remote": "192.0.3.6", "request_id": "fd21b2511ce14bcc937fd7442e4f3f7b", "runtime": 99, "schema_name": "public", "scheme": "https", "status": 400, "timestamp": "2025-01-21T10:06:49.010453", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:49.239735898Z {"auth_via": "unauthenticated", "domain_url": "0.0.0.0", "event": "/-/health/live/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "HEAD", "pid": 109, "remote": "127.0.0.1", "request_id": "eb044f2cd15e4956affd5c358338c58e", "runtime": 13, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:06:49.239527", "user": "", "user_agent": "goauthentik.io/healthcheck"}
2025-01-21T10:06:55.569745507Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "Task published", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.root.celery", "pid": 109, "request_id": "6a5ba25cc72244dc9898ce5d84202ebb", "schema_name": "public", "task_id": "95b822204b394156a67cac9035a44007", "task_name": "authentik.outposts.tasks.outpost_post_save", "timestamp": "2025-01-21T10:06:55.569456"}
2025-01-21T10:06:55.579177019Z {"action": "model_created", "auth_via": "session", "client_ip": "192.0.3.6", "context": {"asn": {"as_org": "ELEVATED-NY", "asn": 14660, "network": "192.0.3.0/24"}, "diff": {"acs_url": {"new_value": "http://test.localhost", "previous_value": null}, "assertion_valid_not_before": {"new_value": "minutes=-5", "previous_value": null}, "assertion_valid_not_on_or_after": {"new_value": "minutes=5", "previous_value": null}, "audience": {"new_value": "", "previous_value": null}, "authentication_flow": {"new_value": "abac070b627e4f85819ea02c5538cf97", "previous_value": null}, "authorization_flow": {"new_value": "1e6b768ef61842eda585d5be984ef2ed", "previous_value": null}, "default_relay_state": {"new_value": "", "previous_value": null}, "digest_algorithm": {"new_value": "http://www.w3.org/2001/04/xmlenc#sha256", "previous_value": null}, "id": {"new_value": 2, "previous_value": null}, "is_backchannel": {"new_value": false, "previous_value": null}, "issuer": {"new_value": "authentik", "previous_value": null}, "name": {"new_value": "SAML Test", "previous_value": null}, "provider_ptr": {"new_value": 2, "previous_value": null}, "session_valid_not_on_or_after": {"new_value": "minutes=86400", "previous_value": null}, "sign_assertion": {"new_value": true, "previous_value": null}, "sign_response": {"new_value": false, "previous_value": null}, "signature_algorithm": {"new_value": "********************", "previous_value": null}, "sp_binding": {"new_value": "redirect", "previous_value": null}}, "geo": {"city": "", "continent": "NA", "country": "US", "lat": 37.751, "long": -97.822}, "http_request": {"args": {}, "method": "POST", "path": "/api/v3/providers/saml/", "request_id": "6a5ba25cc72244dc9898ce5d84202ebb", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}, "model": {"app": "authentik_providers_saml", "model_name": "samlprovider", "name": "SAML Test", "pk": 2}}, "domain_url": "auth.office.mydomain.com", "event": "Created Event", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.events.models", "pid": 109, "request_id": "6a5ba25cc72244dc9898ce5d84202ebb", "schema_name": "public", "timestamp": "2025-01-21T10:06:55.578802", "user": {"email": "[email protected]", "pk": 7, "username": "myusername"}}
2025-01-21T10:06:55.587663909Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "Task published", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.root.celery", "pid": 109, "request_id": "6a5ba25cc72244dc9898ce5d84202ebb", "schema_name": "public", "task_id": "b69f9aaa247d49faa2daf18b4e21d135", "task_name": "authentik.events.tasks.event_notification_handler", "timestamp": "2025-01-21T10:06:55.587381"}
2025-01-21T10:06:55.611780414Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/providers/saml/", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "POST", "pid": 109, "remote": "192.0.3.6", "request_id": "6a5ba25cc72244dc9898ce5d84202ebb", "runtime": 240, "schema_name": "public", "scheme": "https", "status": 201, "timestamp": "2025-01-21T10:06:55.611539", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:55.785016350Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/providers/all/?ordering=name&page=1&page_size=20&search=", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "5145da9afbf5450e90379259bbe4c6bd", "runtime": 101, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:55.784740", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:06:57.417354589Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/providers/all/?ordering=name&page=1&page_size=20&search=", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "aebc11d1b19549c7aca080b0c86fe0d7", "runtime": 104, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:06:57.417049", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:07:00.753273859Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/crypto/certificatekeypairs/?has_key=true&include_details=false&ordering=name", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "3772999bfebf4a21ad21f756969e7e02", "runtime": 70, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:07:00.752964", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:07:00.838149521Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/propertymappings/provider/scope/?ordering=scope_name&page=1&page_size=20&search=", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "e8a2ea6df5a74016aa562a5cb006e215", "runtime": 132, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:07:00.837397", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:07:00.845670646Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/sources/oauth/?has_jwks=true&ordering=name&page=1&page_size=20&search=", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "ef9b7776e2844d1f834322440d1ab34a", "runtime": 137, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:07:00.844889", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:07:01.512452558Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/flows/instances/?designation=authentication&ordering=slug", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 108, "remote": "192.0.3.6", "request_id": "8a3733901b3d4613a4a6e7ecef1d0ca1", "runtime": 840, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:07:01.512131", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:07:01.570654236Z {"auth_via": "session", "domain_url": "auth.office.mydomain.com", "event": "/api/v3/flows/instances/?designation=authorization&ordering=slug", "host": "auth.office.mydomain.com", "level": "info", "logger": "authentik.asgi", "method": "GET", "pid": 109, "remote": "192.0.3.6", "request_id": "b2c58f971544412093adbad5c66c9868", "runtime": 855, "schema_name": "public", "scheme": "https", "status": 200, "timestamp": "2025-01-21T10:07:01.570392", "user": "myusername", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15"}
2025-01-21T10:07:19.412475123Z {"auth_via": "unauthenticated", "domain_url": "0.0.0.0", "event": "/-/health/live/", "host": "0.0.0.0:9000", "level": "info", "logger": "authentik.asgi", "method": "HEAD", "pid": 109, "remote": "127.0.0.1", "request_id": "9efae82bb75e4081afd7665fb93643f7", "runtime": 12, "schema_name": "public", "scheme": "http", "status": 200, "timestamp": "2025-01-21T10:07:19.412207", "user": "", "user_agent": "goauthentik.io/healthcheck"}
// I'm tring to create OAuth2 provider, but no logs appears```
@cdgabe cdgabe added the bug Something isn't working label Jan 21, 2025
@4d62
Copy link
Contributor

4d62 commented Jan 21, 2025

@cdgabe The latest version of authentik at this moment is 2024.12.2 Could you try updating to the latest version to see if this bug still occurs?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants