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

# Marqueurs personnalisés

Des [marqueurs personnalisés](/application/markers/custom-markers) peuvent être ajoutés aux graphiques pour marquer des changements importants. Ils fonctionnent de la même manière que les marqueurs de déploiement, qui vous permettent de savoir quand un déploiement a été effectué.

Il existe plusieurs façons d'envoyer des [marqueurs personnalisés](/application/markers/custom-markers), via notre interface utilisateur, l'[API](/api/markers) et l'[API du public endpoint](/api/public-endpoint/custom-markers).

La gem Ruby inclut également une classe d'assistance pour créer des marqueurs personnalisés via notre public endpoint.

Consultez l'exemple ci-dessous pour voir comment l'utiliser :

<CodeGroup>
  ```ruby Ruby theme={null}
  Appsignal::CustomMarker.report(
    # The icon shown on the timeline
    :icon => "🎉",
    # The message shown on hover
    :message => "Big event happened!",
    # Any time object or a string with a ISO8601 valid time is accepted
    :created_at => Time.now
  )
  ```
</CodeGroup>

Vous pouvez appeler cet assistant n'importe où dans votre application où un événement se produit et doit être suivi sur la chronologie du graphique, comme les tâches Rake.
