Skip to main content
Glama

Prisma MCP Server

Official
by prisma
Apache 2.0
4
44,192
  • Linux
  • Apple
otelSetup.ts1.95 kB
import * as api from '@opentelemetry/api' import { AsyncLocalStorageContextManager } from '@opentelemetry/context-async-hooks' import { OTLPTraceExporter } from '@opentelemetry/exporter-trace-otlp-http' import { registerInstrumentations } from '@opentelemetry/instrumentation' import { Resource } from '@opentelemetry/resources' import { BasicTracerProvider, ConsoleSpanExporter, SimpleSpanProcessor, } from '@opentelemetry/sdk-trace-base' import { ATTR_SERVICE_NAME, ATTR_SERVICE_VERSION } from '@opentelemetry/semantic-conventions' import { PrismaInstrumentation } from '@prisma/instrumentation' /** SETUP */ export function otelSetup() { // a context manager is required to propagate the context const contextManager = new AsyncLocalStorageContextManager().enable() // it's for node.js for span nesting and ctx propagation api.context.setGlobalContextManager(contextManager) // a simple exporter that logs the raw data to the console const consoleExporter = new ConsoleSpanExporter() // exporter that natively works with jaeger without extras const otlpTraceExporter = new OTLPTraceExporter() // docker run --rm --name jaeger -d -e COLLECTOR_OTLP_ENABLED=true -p 16686:16686 -p 4318:4318 jaegertracing/all-in-one:latest // a standard provider that can run on the web and in node const provider = new BasicTracerProvider({ resource: new Resource({ // we can define some metadata about the trace resource [ATTR_SERVICE_NAME]: 'basic-service', [ATTR_SERVICE_VERSION]: '1.0.0', }), }) registerInstrumentations({ // @ts-ignore instrumentations: [new PrismaInstrumentation()], }) // a provider combines multiple exporters to send the data provider.addSpanProcessor(new SimpleSpanProcessor(consoleExporter)) provider.addSpanProcessor(new SimpleSpanProcessor(otlpTraceExporter)) // makes the provider the global tracer provider for telemetry provider.register() }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/prisma/prisma'

If you have feedback or need assistance with the MCP directory API, please join our Discord server