From 88373dd28f812cb31d5000fb6854ea1757096ed2 Mon Sep 17 00:00:00 2001 From: "junior[bot]" Date: Wed, 13 May 2026 10:21:05 +0000 Subject: [PATCH] feat(onboarding): Add missing ProductSolutions for Ruby, Elixir, and Rust Add Elixir and Rust to platformProductAvailability and add METRICS to Ruby/Ruby-rack/Ruby-rails entries. Feature support verified against sentry-docs frontmatter: - Ruby (ruby, ruby-rack, ruby-rails): add METRICS (already had perf, profiling, logs) - Elixir: add PERFORMANCE_MONITORING, LOGS, METRICS (no profiling/replay in SDK) - Rust: add PERFORMANCE_MONITORING, LOGS, METRICS (no profiling/replay in SDK) --- .../app/components/onboarding/productSelection.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/static/app/components/onboarding/productSelection.tsx b/static/app/components/onboarding/productSelection.tsx index 4693c58a08f729..62e9c0a8bec7f3 100644 --- a/static/app/components/onboarding/productSelection.tsx +++ b/static/app/components/onboarding/productSelection.tsx @@ -138,6 +138,11 @@ export const platformProductAvailability = { ], 'dotnet-xamarin': [ProductSolution.PERFORMANCE_MONITORING], dart: [ProductSolution.PERFORMANCE_MONITORING, ProductSolution.LOGS], + elixir: [ + ProductSolution.PERFORMANCE_MONITORING, + ProductSolution.LOGS, + ProductSolution.METRICS, + ], kotlin: [ProductSolution.PERFORMANCE_MONITORING], go: [ ProductSolution.PERFORMANCE_MONITORING, @@ -489,16 +494,24 @@ export const platformProductAvailability = { ProductSolution.PERFORMANCE_MONITORING, ProductSolution.PROFILING, ProductSolution.LOGS, + ProductSolution.METRICS, ], 'ruby-rack': [ ProductSolution.PERFORMANCE_MONITORING, ProductSolution.PROFILING, ProductSolution.LOGS, + ProductSolution.METRICS, ], 'ruby-rails': [ ProductSolution.PERFORMANCE_MONITORING, ProductSolution.PROFILING, ProductSolution.LOGS, + ProductSolution.METRICS, + ], + rust: [ + ProductSolution.PERFORMANCE_MONITORING, + ProductSolution.LOGS, + ProductSolution.METRICS, ], unity: [ProductSolution.LOGS, ProductSolution.METRICS], unreal: [ProductSolution.LOGS],