You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`opentelemetry-instrumentation-system-metrics` Add `process.` prefix to `runtime.memory`, `runtime.cpu.time`, and `runtime.gc_count`. Change `runtime.memory` from count to UpDownCounter. ([#1735](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/1735))
Copy file name to clipboardexpand all lines: opentelemetry-instrumentation/README.rst
+6-1
Original file line number
Diff line number
Diff line change
@@ -18,12 +18,15 @@ This package provides a couple of commands that help automatically instruments a
18
18
19
19
.. note::
20
20
You need to install a distro package to get auto instrumentation working. The ``opentelemetry-distro``
21
-
package contains the default distro and automatically configures some of the common options for users.
21
+
package contains the default distro and configurator and automatically configures some of the common options for users.
22
22
For more info about ``opentelemetry-distro`` check `here <https://opentelemetry-python.readthedocs.io/en/latest/examples/distro/README.html>`__
23
23
::
24
24
25
25
pip install opentelemetry-distro[otlp]
26
26
27
+
When creating a custom distro and/or configurator, be sure to add entry points for each under opentelemetry_distro and opentelemetry_configurator respectfully.
28
+
If you have entry points for multiple distros or configurators present in your environment, you should specify the entry point name of the distro and configurator you want to be used via the OTEL_PYTHON_DISTRO and OTEL_PYTHON_CONFIGURATOR environment variables.
29
+
27
30
28
31
opentelemetry-bootstrap
29
32
-----------------------
@@ -58,6 +61,8 @@ The command supports the following configuration options as CLI arguments and en
58
61
59
62
* ``--traces_exporter`` or ``OTEL_TRACES_EXPORTER``
60
63
* ``--metrics_exporter`` or ``OTEL_METRICS_EXPORTER``
64
+
* ``--distro`` or ``OTEL_PYTHON_DISTRO``
65
+
* ``--configurator`` or ``OTEL_PYTHON_CONFIGURATOR``
61
66
62
67
Used to specify which trace exporter to use. Can be set to one or more of the well-known exporter
0 commit comments