# Arr logs

Starting with version 4.7.0, AxoSyslog can collect logs of the [Lidarr, Prowlarr, Radarr, Readarr, and Sonarr](<https://github.com/Servarr/Wiki>) (often referred to as “*Arr” or “*Arrs”) applications.

Use the new `*arr()` sources to read various *arr logs:

  * `lidarr()`
  * `prowlarr()`
  * `radarr()`
  * `readarr()`
  * `sonarr()`
  * `whisparr()`



Example minimal config:
```
 
    source s_radarr {
        radarr(
        dir("/path/to/my/radarr/log/dir")
        );
    };
    
```

The logging module is stored in the `<prefix><module>` name-value pair, for example: `.radarr.module` => `ImportListSyncService`.

You can modify the prefix with the `prefix()` option.

This driver is actually a reusable configuration snippet. For details on using or writing such configuration snippets, see [Reusing configuration blocks](../../docs/axosyslog-core/chapter-configuration-file/large-configs/config-blocks/index.md). You can find the source of this configuration snippet on [GitHub](<https://github.com/axoflow/axosyslog/blob/master/scl/arr/arr.conf>).

Last modified June 4, 2024: [More github link updates (13f3206)](<https://github.com/axoflow/axosyslog-core-docs/commit/13f3206e659157ec0efc7371296867db7371b637>)