-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathopentelemetry.ts
46 lines (45 loc) · 1.44 KB
/
opentelemetry.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import OpenTelemetrySvg from '@site/static/img/otel-no-fill.svg';
import { Hook } from '.';
export const OpenTelemetry: Hook = {
name: 'OpenTelemetry Trace',
logo: OpenTelemetrySvg,
description: 'Add feature flag evaluation metadata to an OpenTelemetry trace',
technologies: [
{
technology: 'JavaScript',
vendorOfficial: false,
href: 'https://github.com/open-feature/js-sdk-contrib/tree/main/libs/hooks/open-telemetry',
category: ['Server'],
},
{
technology: 'Go',
vendorOfficial: false,
href: 'https://github.com/open-feature/go-sdk-contrib/tree/main/hooks/open-telemetry',
category: ['Server'],
},
{
technology: 'Java',
vendorOfficial: false,
href: 'https://github.com/open-feature/java-sdk-contrib/tree/main/hooks/open-telemetry',
category: ['Server'],
},
{
technology: 'PHP',
vendorOfficial: false,
href: 'https://github.com/open-feature/php-sdk-contrib/tree/main/hooks/OpenTelemetry',
category: ['Server'],
},
{
technology: '.NET',
vendorOfficial: false,
href: 'https://github.com/open-feature/dotnet-sdk-contrib/tree/main/src/OpenFeature.Contrib.Hooks.Otel',
category: ['Server'],
},
{
technology: 'Python',
vendorOfficial: false,
href: 'https://github.com/open-feature/python-sdk-contrib/tree/main/hooks/openfeature-hooks-opentelemetry',
category: ['Server'],
},
],
};