This repository contains two sub-projects: no-code-auto
and code-level-auto
, both of which integrate with SigNoz Cloud for tracing.
typescript/
├── no-code-auto/
└── code-level-auto/
First, clone this repository to your local machine:
git clone https://github.com/SigNoz/sample-NestJs-app.git
cd sample-NestJs-app
Before running either of the sub-projects, you need to install the dependencies.
cd typescript
-
Navigate to the
no-code-auto
directory:cd no-code-auto
-
Install the dependencies:
yarn install
-
Set the environment variables as follows:
export OTEL_TRACES_EXPORTER="otlp" export OTEL_EXPORTER_OTLP_ENDPOINT="https://ingest.<region>.signoz.cloud:443" export OTEL_NODE_RESOURCE_DETECTORS="env,host,os" export OTEL_SERVICE_NAME="<service_name>" export OTEL_EXPORTER_OTLP_HEADERS="signoz-ingestion-key=<your-ingestion-key>" export NODE_OPTIONS="--require @opentelemetry/auto-instrumentations-node/register"
-
Replace the placeholders:
- Set
<region>
to match your SigNoz Cloud region. - Replace
<your-ingestion-key>
with your SigNoz ingestion key. - Replace
<service_name>
with the name of your service.
- Set
-
Finally, run the application:
<your_run_command>
-
Navigate to the
code-level-auto
directory:cd code-level-auto
-
Install the dependencies:
yarn install
-
Open the
tracing.ts
file and modify theexporterOptions
configuration:const exporterOptions = { //highlight-start url: 'https://ingest.<region>.signoz.cloud:443/v1/traces', headers: { "signoz-access-token": "<your-ingestion-key>" } //highlight-end };
-
Replace the placeholders:
- Set
<region>
to match your SigNoz Cloud region. - Replace
<your-ingestion-key>
with your SigNoz ingestion key.
- Set
-
Once the configuration is updated, you can run the application:
<your_run_command>
- Ensure that all environment variables are correctly set, particularly the
OTEL_EXPORTER_OTLP_ENDPOINT
andOTEL_SERVICE_NAME
. - Verify that your SigNoz Cloud region and ingestion key are correct.
This project is licensed under the MIT License - see the LICENSE file for details.