
Security News
ESLint Adds Official Support for Linting HTML
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
nice-grpc-opentelemetry
Advanced tools
OpenTelemetry instrumentation for nice-grpc. Currently provides only traces.
npm install nice-grpc-opentelemetry
Attach middleware as the first one on the server:
import {createServer} from 'nice-grpc';
import {openTelemetryServerMiddleware} from 'nice-grpc-opentelemetry';
const server = createServer()
.use(openTelemetryServerMiddleware())
.use(/* ... other middleware */);
Attach middleware as the first one on the client:
import {createClientFactory} from 'nice-grpc'; // or 'nice-grpc-web'
import {openTelemetryClientMiddleware} from 'nice-grpc-opentelemetry';
const clientFactory = createClientFactory()
.use(openTelemetryClientMiddleware())
.use(/* ... other middleware */);
const client = clientFactory.create(/* ... */);
This library generates spans according to Semantic conventions for RPC spans with an addition of custom attributes:
Attribute | Type | Description | Examples |
---|---|---|---|
rpc.grpc.status_text | string | The name of the status of the gRPC request | INVALID_ARGUMENT |
FAQs
OpenTelemetry instrumentation for nice-grpc
The npm package nice-grpc-opentelemetry receives a total of 6,000 weekly downloads. As such, nice-grpc-opentelemetry popularity was classified as popular.
We found that nice-grpc-opentelemetry demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.