
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@qrvey/telemetry
Advanced tools
This package provides telemetry instrumentation and logging for Qrvey services.
This package provides telemetry instrumentation and logging for Qrvey services.
Set the following environment variables to configure telemetry:
ENABLE_OTLP_LOG=true # Enable OpenTelemetry logging
ENABLE_OTLP_TRACE=true # Enable OpenTelemetry tracing
ENABLE_OTLP_METRIC=true # Enable OpenTelemetry metrics
QRVEY_SERVICE_NAME=Qrvey-Service # Name of the service for telemetry identification
QRVEY_SERVICE_VERSION=1.0.0 # Version of the service
OTLP_TRACE_URL=http://localhost:4320/v1/traces # Endpoint for sending trace data
OTLP_LOG_URL=http://localhost:4320/v1/logs # Endpoint for sending log data
OTLP_METRIC_URL=http://otel-collector:4318/v1/metrics # Endpoint for sending metric data
ENABLE_CONSOLE_LOGS=false # Enable or disable console logging
NODE_ENV=development # Node.js environment (development, production, etc.)
LOG_LEVEL=debug # Minimum log level (debug, info, warn, error)
At the beginning of each service, start the InstrumentationService and use the LoggerService for logging purposes:
const { InstrumentationService, LoggerService } = require("@qrvey/telemetry");
// Initialize instrumentation
new InstrumentationService();
// Initialize logger (optional name for context)
const logger = new LoggerService('your_context_name');
logger.info("this is info message");
logger.debug("this is a debug message");
logger.warn("this is a warning message");
logger.error("this is an error message");
FAQs
This package provides telemetry instrumentation and logging for Qrvey services.
The npm package @qrvey/telemetry receives a total of 10 weekly downloads. As such, @qrvey/telemetry popularity was classified as not popular.
We found that @qrvey/telemetry demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 14 open source maintainers 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.