Skip to content

Commit ec7cd1c

Browse files
siim suggestions
1 parent bb1ca3c commit ec7cd1c

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

gdi/get-data-in/application/nodejs/instrumentation/instrument-nodejs-application.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Instrument your Node.js application for Splunk Observability Cloud
77
.. meta::
88
:description: The Splunk Distribution of OpenTelemetry Node.js can automatically instrument your Node.js application or service. Follow these steps to get started.
99

10-
The Splunk Distribution of OpenTelemetry JS can automatically instrument your Node.js application and many of the popular node.js libraries your application uses.
10+
The Splunk Distribution of OpenTelemetry JS can automatically instrument your Node.js application and many of the popular Node.js libraries your application uses.
1111

1212
To get started, use the guided setup or follow the instructions manually.
1313

@@ -209,7 +209,7 @@ To add custom or third-party instrumentations that implement the OpenTelemetry J
209209
},
210210
});
211211
212-
For a list of supported instrumentations, see :new-page:`https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/metapackages/auto-instrumentations-node#supported-instrumentations <https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/metapackages/auto-instrumentations-node#supported-instrumentations>` on GitHub.
212+
For a list of bundled instrumentations, see :new-page:`https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/metapackages/auto-instrumentations-node#supported-instrumentations <https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/metapackages/auto-instrumentations-node#supported-instrumentations>` on GitHub.
213213

214214
.. note:: For an example of entry point script, see the :new-page:`sample tracer.js file <https://github.com/signalfx/splunk-otel-js/blob/main/examples/express/tracer.js>` on GitHub.
215215

gdi/get-data-in/application/nodejs/instrumentation/manual-instrumentation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ To send custom application metrics to Splunk Observability Cloud, add ``@opentel
7272
}));
7373
},
7474
exportIntervalMillis: 1000, // default: 5000
75-
// The default exporter used is OTLP over gRPC
76-
endpoint: 'http://collector:4317',
75+
// The default exporter used is OTLP over HTTP (port 4318)
76+
endpoint: 'http://collector:4318',
7777
},
7878
});
7979

gdi/get-data-in/application/nodejs/nodejs-otel-requirements.rst

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,7 @@ Meet these requirements to instrument Node.js applications for Splunk Observabil
1616
Ensure you have supported Node.js and library versions
1717
==============================================================
1818

19-
.. include:: /_includes/requirements/nodejs.rst
20-
21-
Dependencies
22-
---------------
23-
24-
.. raw:: html
25-
26-
<div class="instrumentation" section="dependencies" url="https://raw.githubusercontent.com/splunk/o11y-gdi-metadata/main/apm/splunk-otel-js/metadata.yaml" data-renaming='{"name": "Dependency", "source_href": "Link to source", "version": "Version", "stability": "Stability"}'></div>
19+
The Splunk Distribution of OpenTelemetry JS requires Node.js version 18 and higher.
2720

2821
.. _supported-nodejs-otel-libraries-3x:
2922

gdi/get-data-in/application/nodejs/version2x/troubleshooting/common-nodejs-troubleshooting.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ To troubleshoot the lack of connectivity between the OTLP exporter and the OTel
8686
#. Make sure that ``OTEL_EXPORTER_OTLP_ENDPOINT`` points to the correct OpenTelemetry Collector instance host.
8787
#. Check that your collector instance is configured and running. See :ref:`otel-splunk-collector-tshoot`.
8888
#. Check that the OTLP receiver is activated in the OTel Collector and plugged into the traces pipeline.
89-
#. Check that the OTel Collector points to the following address: ``http://<host>:4317``. Verify that your URL is correct.
89+
#. Check that the OTel Collector points to the following address: ``http://<host>:4318``. Verify that your URL is correct.
9090

9191
401 error when sending spans
9292
--------------------------------------------------------
@@ -169,6 +169,7 @@ The following snippet contains a sample ``profiling`` pipeline:
169169
otlp:
170170
protocols:
171171
grpc:
172+
http:
172173
173174
exporters:
174175
# Profiling

0 commit comments

Comments
 (0)