You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**`hostname`** | `string` | Required | The URL to your Pi-Hole instance
1785
+
**`hideStatus`** / **`hideChart`** / **`hideInfo`** | `boolean` | _Optional_ | Optionally hide any of the three parts of the widget
1786
+
**`apiKey`** | `string` | Required | Your Pi-Hole web password or application password. It **IS** your Pi-Hole admin interface password **UNLESS** you have 2FA turned on (in contrast to the old widget). If you have 2FA turned on you will need to create an application password. Refer to Pi-Hole documentation for how to create an application password.
1787
+
1788
+
#### Example
1789
+
1790
+
```yaml
1791
+
- type: pi-hole-stats-v6
1792
+
options:
1793
+
hostname: http://192.168.130.1
1794
+
apiKey: xxxxxxxxxxxxxxxxxxxxxxx
1795
+
```
1796
+
1797
+
> [!TIP]
1798
+
> In order to avoid leaking secret data, both `hostname` and `apiKey` can leverage environment variables. Simply pass the name of the variable, which MUST start with `VUE_APP_`.
1799
+
1800
+
```yaml
1801
+
- type: pi-hole-stats-v6
1802
+
options:
1803
+
hostname: VUE_APP_pihole_ip
1804
+
apiKey: VUE_APP_pihole_key
1805
+
```
1806
+
1807
+
> [!IMPORTANT]
1808
+
> You will need to restart the server (or the docker image) if adding/editing an env var for this to be refreshed.
1809
+
1810
+
#### Info
1811
+
1812
+
- **CORS**: 🟢 Enabled
1813
+
- **Auth**: 🔴 Required
1814
+
- **Price**: 🟢 Free
1815
+
- **Host**: Self-Hosted (see [GitHub - Pi-Hole](https://github.com/pi-hole/pi-hole))
**`hostname`** | `string` | Required | The URL to your Pi-Hole instance
1864
+
**`apiKey`** | `string` | Required | Your Pi-Hole web password or application password. It **IS** your Pi-Hole admin interface password **UNLESS** you have 2FA turned on (in contrast to the old widget). If you have 2FA turned on you will need to create an application password. Refer to Pi-Hole documentation for how to create an application password.
1865
+
**`count`** | `number` | _Optional_ | The number of queries to display. Defaults to `10`
1866
+
1867
+
#### Example
1868
+
1869
+
```yaml
1870
+
- type: pi-hole-top-queries-v6
1871
+
options:
1872
+
hostname: https://pi-hole.local
1873
+
apiKey: xxxxxxxxxxxxxxxxxxxxxxx
1874
+
```
1875
+
1876
+
#### Info
1877
+
1878
+
- **CORS**: 🟢 Enabled
1879
+
- **Auth**: 🔴 Required
1880
+
- **Price**: 🟢 Free
1881
+
- **Host**: Self-Hosted (see [GitHub - Pi-hole](https://github.com/pi-hole/pi-hole))
Shows number of recent traffic, using allowed and blocked queries from [Pi-Hole](https://pi-hole.net/)
1807
1889
@@ -1833,6 +1915,38 @@ Shows number of recent traffic, using allowed and blocked queries from [Pi-Hole]
1833
1915
1834
1916
---
1835
1917
1918
+
### Pi-Hole Recent Traffic v6
1919
+
1920
+
Shows number of recent traffic, using allowed and blocked queries from [Pi-Hole](https://pi-hole.net/). Use this version of the widget if you have a v6+ Pi-Hole instance.
**`hostname`** | `string` | Required | The URL to your Pi-Hole instance
1929
+
**`apiKey`** | `string` | Required | Your Pi-Hole web password or application password. It **IS** your Pi-Hole admin interface password **UNLESS** you have 2FA turned on (in contrast to the old widget). If you have 2FA turned on you will need to create an application password. Refer to Pi-Hole documentation for how to create an application password.
1930
+
1931
+
#### Example
1932
+
1933
+
```yaml
1934
+
- type: pi-hole-traffic-v6
1935
+
options:
1936
+
hostname: https://pi-hole.local
1937
+
apiKey: xxxxxxxxxxxxxxxxxxxxxxx
1938
+
```
1939
+
1940
+
#### Info
1941
+
1942
+
- **CORS**: 🟢 Enabled
1943
+
- **Auth**: 🔴 Required
1944
+
- **Price**: 🟢 Free
1945
+
- **Host**: Self-Hosted (see [GitHub - Pi-hole](https://github.com/pi-hole/pi-hole))
Displays the current and recent uptime of your running services, via a self-hosted instance of [StatPing](https://github.com/statping/statping)
0 commit comments