> ## Documentation Index
> Fetch the complete documentation index at: https://docs.appsignal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Aanvullende OpenTelemetry-instrumentaties

<Note>
  🛟 Aarzel niet om [contact met ons op te nemen](mailto:support@appsignal.com) als u problemen tegenkomt
  bij het implementeren van aangepaste instrumentaties. We helpen u graag!
</Note>

Naast de reeds meegeleverde instrumentaties kunt u ook aangepaste instrumentaties toevoegen, mits deze voldoen aan de structuur van een automatische OpenTelemetry-instrumentatie.

## Installatie

Met de configuratie-optie [`additionalInstrumentations`](/nodejs/3.x/configuration/options#option-additionalinstrumentations) kunt u aanvullende instrumentaties toevoegen die spans aanmaken en deze naar AppSignal versturen.

Hieronder ziet u een voorbeeld van hoe u `additionalInstrumentations` in uw applicatie kunt gebruiken:

<CodeGroup>
  ```javascript Node.js theme={null}
  const {
    CustomInstrumentation,
  } = require("opentelemetry-custom-instrumentation");

  new Appsignal({
    active: true,
    name: "<YOUR APPLICATION NAME>",
    pushApiKey: "<YOUR API KEY>",
    additionalInstrumentations: [
      new CustomInstrumentation({
        // instrumentation config here
      }),
    ],
  });
  ```
</CodeGroup>
