Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/datasets/hooks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ import type { ComponentType, SVGProps } from 'react';
import { OpenTelemetry } from './opentelemetry';
import { Validation } from './validation';
import { Datadog } from './datadog';
import { Sentry } from './sentry';
import { Category, EcosystemElement, Technology } from '../types';

export const ECOSYSTEM_HOOKS: EcosystemElement[] = [OpenTelemetry, Validation, Datadog]
export const ECOSYSTEM_HOOKS: EcosystemElement[] = [OpenTelemetry, Validation, Datadog, Sentry]
.map((hook) => {
return hook.technologies.map(({ vendorOfficial, technology, href, category }): EcosystemElement => {
return {
Expand Down
16 changes: 16 additions & 0 deletions src/datasets/hooks/sentry.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import SentrySvg from '@site/static/img/sentry-no-fill.svg';
import { Hook } from '.';

export const Sentry: Hook = {
name: 'Sentry',
logo: SentrySvg,
description: 'Add feature flag evaluation metadata to Sentry',
technologies: [
{
technology: 'JavaScript',
vendorOfficial: true,
href: 'https://docs.sentry.io/platforms/javascript/configuration/integrations/openfeature/',
category: ['Client'],
},
],
};
3 changes: 3 additions & 0 deletions static/img/sentry-no-fill.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.