]> git.immae.eu Git - github/bastienwirtz/homer.git/blob - docs/customservices.md
7d475422b33f3bbe63b935a457dec73175a0a0d9
[github/bastienwirtz/homer.git] / docs / customservices.md
1 # Custom Services
2
3 Some service can use a specific a component that provides some extra features by adding a `type` key to the service yaml
4 configuration. Available services are in `src/components/`. Here is an overview of all custom services that are available
5 within Homer.
6
7 If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page.
8
9
10 ## Common options
11
12 ```yaml
13 - name: "My Service"
14 logo: "assets/tools/sample.png"
15 url: "http://my-service-link"
16 endpoint: "http://my-service-endpoint" # Optional: alternative base URL used to fetch service data is necessary.
17 useCredentials: false # Optional: Override global proxy.useCredentials configuration.
18 type: "<type>"
19 ```
20
21 ## PiHole
22
23 Using the PiHole service you can display info about your local PiHole instance right on your Homer dashboard.
24
25 The following configuration is available for the PiHole service.
26
27 ```yaml
28 - name: "Pi-hole"
29 logo: "assets/tools/sample.png"
30 # subtitle: "Network-wide Ad Blocking" # optional, if no subtitle is defined, PiHole statistics will be shown
31 url: "http://192.168.0.151/admin"
32 type: "PiHole"
33 ```
34
35 ## OpenWeatherMap
36
37 Using the OpenWeatherMap service you can display weather information about a given location.
38 The following configuration is available for the OpenWeatherMap service:
39
40 ```yaml
41 - name: "Weather"
42 location: "Amsterdam" # your location.
43 locationId: "2759794" # Optional: Specify OpenWeatherMap city ID for better accuracy
44 apikey: "<---insert-api-key-here--->" # insert your own API key here. Request one from https://openweathermap.org/api.
45 units: "metric" # units to display temperature. Can be one of: metric, imperial, kelvin. Defaults to kelvin.
46 background: "square" # choose which type of background you want behind the image. Can be one of: square, cicle, none. Defaults to none.
47 type: "OpenWeather"
48 ```
49
50 **Remarks:**
51 If 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).
52
53 ## Medusa
54
55 This service displays News (grey), Warning (orange) or Error (red) notifications bubbles from the Medusa application.
56 Two lines are needed in the config.yml :
57
58 ```yaml
59 type: "Medusa"
60 apikey: "01234deb70424befb1f4ef6a23456789"
61 ```
62
63 The url must be the root url of Medusa application.
64 The Medusa API key can be found in General configuration > Interface. It is needed to access Medusa API.
65
66 ## Lidarr, Sonarr and Radarr
67
68 This service displays Activity (blue), Warning (orange) or Error (red) notifications bubbles from the Lidarr, Radarr or Sonarr application.
69 Two lines are needed in the config.yml :
70
71 ```yaml
72 type: "Lidarr", "Radarr" or "Sonarr"
73 apikey: "01234deb70424befb1f4ef6a23456789"
74 ```
75
76 The url must be the root url of Lidarr, Radarr or Sonarr application.
77 The Lidarr, Radarr or Sonarr API key can be found in Settings > General. It is needed to access the API.
78
79 ## PaperlessNG
80
81 This service displays total number of documents stored. Two lines are required:
82
83 ```yaml
84 type: "PaperlessNG"
85 apikey: "0123456789abcdef123456789abcdef"
86 ```
87
88 API key can be generated in Settings > Administration > Auth Tokens
89
90 ## Ping
91
92 For Ping you need to set the type to Ping and provide a url.
93
94 ```yaml
95 - name: "Awesome app"
96 type: Ping
97 logo: "assets/tools/sample.png"
98 subtitle: "Bookmark example"
99 tag: "app"
100 url: "https://www.reddit.com/r/selfhosted/"
101 ```
102
103 ## Prometheus
104
105 For Prometheus you need to set the type to Prometheus and provide a url.
106
107 ```yaml
108 - name: "Prometheus"
109 type: Prometheus
110 logo: "assets/tools/sample.png"
111 url: "http://192.168.0.151/"
112 # subtitle: "Monitor data server"
113 ```