{% from "_chrome.html" import environment_chrome, page_footer %} Dewey Admin {{ environment_chrome(deployment, region, show_environment_chrome|default(true)) }}
Dewey Admin

Operator Anomalies

{{ profile.email }}
Admin and operator review

Local anomaly records persisted in Dewey.

These records are read-only operational summaries. They stay local to Dewey and are exposed through authenticated API and UI surfaces only.

Open anomaly view
Anomalies
{{ anomalies|length }}
Local anomaly records
Open
{{ anomalies | selectattr("status", "equalto", "open") | list | length }}
Records currently open
Monitoring
{{ anomalies | selectattr("status", "equalto", "monitoring") | list | length }}
Records under watch
High Severity
{{ anomalies | selectattr("severity", "equalto", "high") | list | length }}
High priority anomaly records

Managed Artifact Storage

Update the S3 bucket Dewey uses for managed uploads and copy-import targets.
Config file
{{ config_path }}
Current managed bucket
{{ managed_storage_bucket or "Not configured" }}
Managed prefix
{{ managed_storage_prefix }}
Use a bucket name only, not an `s3://bucket/prefix` path.
{% if artifact_bucket_status %}
{{ artifact_bucket_status.detail }}
{% endif %}

Runtime Config

Effective configuration loaded by this Dewey instance, with secrets redacted.
Active config file
{{ config_path }}
Environment chrome
{{ "enabled" if show_environment_chrome else "disabled" }}
Deployment
{{ deployment.name }}
AWS region
{{ region.name }}
{% for row in config_rows %} {% endfor %}
Key Value
{{ row.path }} {{ row.value }}

Recent Anomalies

Sorted by severity and title for quick review.
{% for item in anomalies %} {% endfor %} {% if not anomalies %} {% endif %}
ID Severity Status Summary View
{{ item.anomaly_id }} {{ item.severity }} {{ item.status }} {{ item.summary }} Open
No anomalies recorded yet.
{{ page_footer(git_meta, build_version) }}