]> git.immae.eu Git - github/bastienwirtz/homer.git/blame - docs/customservices.md
Update customservices.md
[github/bastienwirtz/homer.git] / docs / customservices.md
CommitLineData
dfb0b146 1# Custom Services
fd12de9e 2
92d899bd 3Some service can use a specific a component that provides some extra features by adding a `type` key to the service yaml
ad8efdc7
MK
4configuration and, where applicable, an apikey. Note that config.yml is exposed at /assets/config.yml via HTTP and any
5apikey included in the configuration file is exposed to anyone who can access the homer instance. Only include an apikey
6if your homer instance is secured behind some form of authentication or access restriction.
7
8Available services are in `src/components/`. Here is an overview of all custom services that are available
345dd6c1
S
9within Homer:
10+ [PiHole](#pihole)
11+ [OpenWeatherMap](#openweathermap)
12+ [Medusa](#medusa)
13+ [Lidarr, Prowlarr, Sonarr and Radarr](#lidarr-prowlarr-sonarr-and-radarr)
14+ [PaperlessNG](#paperlessng)
15+ [Ping](#ping)
16+ [Prometheus](#prometheus)
17+ [Portainer](#portainer)
18+ [Emby](#emby)
fd12de9e 19
7129af3b
BW
20If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page.
21
80ba98cf 22
3acfb01d
BW
23## Common options
24
25```yaml
80ba98cf
AB
26- name: "My Service"
27 logo: "assets/tools/sample.png"
28 url: "http://my-service-link"
29 endpoint: "http://my-service-endpoint" # Optional: alternative base URL used to fetch service data is necessary.
66a434e7 30 useCredentials: false # Optional: Override global proxy.useCredentials configuration.
80ba98cf 31 type: "<type>"
3acfb01d
BW
32```
33
fd12de9e
DW
34## PiHole
35
36Using the PiHole service you can display info about your local PiHole instance right on your Homer dashboard.
37
38The following configuration is available for the PiHole service.
39
1d3287dc 40```yaml
3acfb01d
BW
41- name: "Pi-hole"
42 logo: "assets/tools/sample.png"
43 # subtitle: "Network-wide Ad Blocking" # optional, if no subtitle is defined, PiHole statistics will be shown
44 url: "http://192.168.0.151/admin"
45 type: "PiHole"
fd12de9e
DW
46```
47
48## OpenWeatherMap
49
50Using the OpenWeatherMap service you can display weather information about a given location.
f11b1c9d 51The following configuration is available for the OpenWeatherMap service:
fd12de9e 52
1d3287dc 53```yaml
3acfb01d
BW
54- name: "Weather"
55 location: "Amsterdam" # your location.
56 locationId: "2759794" # Optional: Specify OpenWeatherMap city ID for better accuracy
487f954a 57 apikey: "<---insert-api-key-here--->" # insert your own API key here. Request one from https://openweathermap.org/api.
3acfb01d
BW
58 units: "metric" # units to display temperature. Can be one of: metric, imperial, kelvin. Defaults to kelvin.
59 background: "square" # choose which type of background you want behind the image. Can be one of: square, cicle, none. Defaults to none.
60 type: "OpenWeather"
fd12de9e 61```
97f0c43c
DW
62
63**Remarks:**
92d5b8d4
BW
64If for some reason your city can't be found by entering the name in the `location` property, you could also try to configure the OWM city ID in the `locationId` property. To retrieve your specific City ID, go to the [OWM website](https://openweathermap.org), search for your city and retrieve the ID from the URL (for example, the City ID of Amsterdam is 2759794).
65
4399f5fa 66## Medusa
67
68This service displays News (grey), Warning (orange) or Error (red) notifications bubbles from the Medusa application.
69Two lines are needed in the config.yml :
1d3287dc
BW
70
71```yaml
3acfb01d
BW
72 type: "Medusa"
73 apikey: "01234deb70424befb1f4ef6a23456789"
4399f5fa 74```
1d3287dc 75
4399f5fa 76The url must be the root url of Medusa application.
77The Medusa API key can be found in General configuration > Interface. It is needed to access Medusa API.
78
50b3bddf 79## Lidarr, Prowlarr, Sonarr and Radarr
4399f5fa 80
0121fa80 81This service displays Activity (blue), Warning (orange) or Error (red) notifications bubbles from the Lidarr, Radarr or Sonarr application.
4399f5fa 82Two lines are needed in the config.yml :
1d3287dc
BW
83
84```yaml
50b3bddf 85 type: "Lidarr", "Prowlarr", "Radarr" or "Sonarr"
3acfb01d 86 apikey: "01234deb70424befb1f4ef6a23456789"
4399f5fa 87```
1d3287dc 88
50b3bddf
RC
89The url must be the root url of Lidarr, Prowlarr, Radarr or Sonarr application.
90The Lidarr, Prowlarr, Radarr or Sonarr API key can be found in Settings > General. It is needed to access the API.
8ede3041
DN
91If you are using an older version of Radarr or Sonarr which don't support the new V3 api endpoints, add the following line to your service config "legacyApi: true", example:
92
93```yaml
94- name: "Radarr"
95 type: "Radarr"
f7f4ebdf 96 url: "http://localhost:7878/"
8ede3041 97 apikey: "MY-SUPER-SECRET-API-KEY"
f7f4ebdf 98 target: "_blank"
8ede3041
DN
99 legacyApi: true
100```
92d899bd 101
92d899bd
BW
102## PaperlessNG
103
168f157c
A
104This service displays total number of documents stored. Two lines are required:
105
106```yaml
107 type: "PaperlessNG"
108 apikey: "0123456789abcdef123456789abcdef"
109```
110
111API key can be generated in Settings > Administration > Auth Tokens
92d899bd 112
92d899bd
BW
113## Ping
114
b2f6da03
SK
115For Ping you need to set the type to Ping and provide a url.
116
e58461ff 117```yaml
3acfb01d
BW
118- name: "Awesome app"
119 type: Ping
120 logo: "assets/tools/sample.png"
400cdb8f
H
121 subtitle: "Bookmark example"
122 tag: "app"
123 url: "https://www.reddit.com/r/selfhosted/"
e58461ff 124```
277dafaf
AB
125
126## Prometheus
127
128For Prometheus you need to set the type to Prometheus and provide a url.
129
130```yaml
131- name: "Prometheus"
132 type: Prometheus
133 logo: "assets/tools/sample.png"
134 url: "http://192.168.0.151/"
135 # subtitle: "Monitor data server"
136```
a1a70d4a
ES
137
138## Portainer
139
140This service displays info about the total number of containers managed by your Portainer instance.
141In order to use it, you must be using Portainer version 1.11 or later. Generate an access token from the UI and pass
142it to the apikey field.
143
144See https://docs.portainer.io/v/ce-2.11/user/account-settings#access-tokens
145
146```yaml
147- name: "Portainer"
148 logo: "assets/tools/sample.png"
149 url: "http://192.168.0.151/"
150 type: "Portainer"
151 apikey: "MY-SUPER-SECRET-API-KEY"
152```
345dd6c1
S
153
154## Emby
155
156You need to set the type to Emby, provide an api key and choose which stats to show if the subtitle is disabled.
157
158```yaml
159- name: "Emby"
160 logo: "assets/tools/sample.png"
161 url: "http://192.168.0.151/"
6dc8fa20 162 type: "Emby"
345dd6c1
S
163 apikey: "MY-SUPER-SECRET-API-KEY"
164 libraryType: "music" #Choose which stats to show. Can be one of: music, series or movies.
165```