-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathintegrations.ts
More file actions
78 lines (76 loc) · 2.35 KB
/
integrations.ts
File metadata and controls
78 lines (76 loc) · 2.35 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import type { ComponentItem } from './types'
export const INTEGRATIONS_ITEMS = {
temporal: [
{
name: 'Cloud Metrics',
href: '/docs/integrations/temporal-cloud-metrics',
clickName: 'Temporal Cloud Metrics Link',
},
{
name: 'Golang',
href: '/docs/integrations/temporal-golang-opentelemetry',
clickName: 'Temporal Golang Link',
},
{
name: 'Typescript',
href: '/docs/integrations/temporal-typescript-opentelemetry',
clickName: 'Temporal Typescript Link',
},
] satisfies ComponentItem[],
databases: [
{ name: 'Redis', href: '/docs/integrations/redis', clickName: 'Redis Integration Link' },
{
name: 'PostgreSQL',
href: '/docs/integrations/postgresql',
clickName: 'PostgreSQL Integration Link',
},
{ name: 'MongoDB', href: '/docs/integrations/mongodb', clickName: 'MongoDB Integration Link' },
{
name: 'Clickhouse',
href: '/docs/integrations/clickhouse',
clickName: 'Clickhouse Integration Link',
},
{
name: 'Neon',
href: '/docs/integrations/opentelemetry-neondb',
clickName: 'Neon Integration Link',
},
{
name: 'Microsoft SQL Server',
href: '/docs/integrations/sql-server',
clickName: 'Microsoft SQL Server Integration Link',
},
{
name: 'Hasura',
href: '/docs/integrations/opentelemetry-hasura',
clickName: 'Hasura Integration Link',
},
] satisfies ComponentItem[],
aws: [
{
name: 'One-Click AWS Integrations',
href: '/docs/integrations/aws/one-click-aws-integrations',
clickName: 'One-Click AWS Integrations Link',
},
{
name: 'AWS RDS PostgreSQL (Manual)',
href: '/docs/integrations/aws-rds-postgres',
clickName: 'AWS RDS PostgreSQL Link',
},
{
name: 'AWS RDS MySQL (Manual)',
href: '/docs/integrations/aws-rds-mysql',
clickName: 'AWS RDS MySQL Link',
},
{
name: 'AWS Elasticache Redis (Manual)',
href: '/docs/integrations/aws-elasticache-redis',
clickName: 'AWS Elasticache Redis Link',
},
] satisfies ComponentItem[],
other: [
{ name: 'Nginx', href: '/docs/integrations/nginx', clickName: 'Nginx Integration Link' },
] satisfies ComponentItem[],
} as const
export const getAllIntegrationsItems = (): ComponentItem[] =>
Object.values(INTEGRATIONS_ITEMS).flat()