> ## 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.

# Padrino

[Padrino](http://www.padrinorb.com/)-Anwendungen werden offiziell unterstützt. Die Instrumentierung von Padrino-Anwendungen erfordert manuelles Setup. Folgen Sie den Installationsschritten in AppSignal, beginnend mit einem Klick auf „Add app" auf dem [Accounts-Bildschirm](https://appsignal.com/accounts).

<Note>
  Verwendet Ihre Anwendung eine Kombination aus Rails, Grape, Hanami, Padrino oder Sinatra? Folgen Sie unserem Leitfaden zum [Instrumentieren mehrerer Rack-Anwendungen](/ruby/integrations/rack-libraries).
</Note>

## Installation

Nachdem Sie das AppSignal-Gem installiert haben, fügen Sie die AppSignal-Integration nach dem Require von `padrino` hinzu.

<CodeGroup>
  ```ruby Ruby theme={null}
  # config/boot.rb
  require "rubygems" unless defined?(Gem)
  require "bundler/setup"
  require "appsignal" # Add this require

  # Load the Padrino integration
  Appsignal.load(:padrino)
  # Start AppSignal
  Appsignal.start

  # For Ruby gem 3.11 and older
  require "appsignal/integrations/padrino" # Add this line
  ```
</CodeGroup>

Erstellen Sie anschließend die AppSignal-Konfigurationsdatei. Weitere Details zur Konfiguration von AppSignal finden Sie auf der Seite [Ruby-Konfiguration](/ruby/configuration).

Starten Sie nach diesen Schritten Ihre Sinatra-App und warten Sie, bis die Daten in AppSignal eintreffen.
