From 4f3f3e732b4a546fc6ae21a60a0a92db1ea2fcdc Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Fri, 9 Jan 2026 22:53:04 -0300 Subject: [PATCH] Add OpenSearch to services and apps --- frontend/src/data/sample.js | 6 ++++++ frontend/src/views/AppsView.vue | 1 + 2 files changed, 7 insertions(+) diff --git a/frontend/src/data/sample.js b/frontend/src/data/sample.js index c2afc64..05b4973 100644 --- a/frontend/src/data/sample.js +++ b/frontend/src/data/sample.js @@ -155,6 +155,12 @@ export function fallbackServices() { summary: "Secrets for secure environment injection.", link: "https://secret.bstein.dev", }, + { + name: "OpenSearch", + category: "observability", + summary: "Centralized logs for Atlas services. Powered by Fluent Bit.", + link: "https://logs.bstein.dev", + }, { name: "Monero", category: "crypto", diff --git a/frontend/src/views/AppsView.vue b/frontend/src/views/AppsView.vue index f603a12..5ed1571 100644 --- a/frontend/src/views/AppsView.vue +++ b/frontend/src/views/AppsView.vue @@ -140,6 +140,7 @@ const sections = [ { name: "Harbor", url: "https://registry.bstein.dev", target: "_blank", description: "Artifact registry." }, { name: "GitOps", url: "https://cd.bstein.dev", target: "_blank", description: "GitOps UI for Flux." }, { name: "Vault", url: "https://secret.bstein.dev", target: "_blank", description: "Secrets management for infrastructure and apps." }, + { name: "OpenSearch", url: "https://logs.bstein.dev", target: "_blank", description: "Centralized logs powered by Fluent Bit." }, { name: "Grafana", url: "https://metrics.bstein.dev", target: "_blank", description: "Dashboards and monitoring." }, ], },