mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-01 21:13:39 +01:00
commit
135f738249
@ -102,6 +102,11 @@
|
|||||||
"subscriptions": "Subscriptions",
|
"subscriptions": "Subscriptions",
|
||||||
"unread": "Unread"
|
"unread": "Unread"
|
||||||
},
|
},
|
||||||
|
"caddy": {
|
||||||
|
"upstreams": "Upstreams",
|
||||||
|
"requests": "Current requests",
|
||||||
|
"requests_failed": "Failed requests"
|
||||||
|
},
|
||||||
"changedetectionio": {
|
"changedetectionio": {
|
||||||
"totalObserved": "Total Observed",
|
"totalObserved": "Total Observed",
|
||||||
"diffsDetected": "Diffs Detected"
|
"diffsDetected": "Diffs Detected"
|
||||||
@ -517,11 +522,11 @@
|
|||||||
"pfsense": {
|
"pfsense": {
|
||||||
"load": "Load Avg",
|
"load": "Load Avg",
|
||||||
"memory": "Mem Usage",
|
"memory": "Mem Usage",
|
||||||
"wanStatus": "WAN Status",
|
"wanStatus": "WAN Status",
|
||||||
"up": "Up",
|
"up": "Up",
|
||||||
"down": "Down",
|
"down": "Down",
|
||||||
"temp": "Temp",
|
"temp": "Temp",
|
||||||
"disk": "Disk Usage",
|
"disk": "Disk Usage",
|
||||||
"wanIP": "WAN IP"
|
"wanIP": "WAN IP"
|
||||||
},
|
},
|
||||||
"proxmoxbackupserver": {
|
"proxmoxbackupserver": {
|
||||||
|
39
src/widgets/caddy/component.jsx
Normal file
39
src/widgets/caddy/component.jsx
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
import { useTranslation } from "next-i18next";
|
||||||
|
|
||||||
|
import Container from "components/services/widget/container";
|
||||||
|
import Block from "components/services/widget/block";
|
||||||
|
import useWidgetAPI from "utils/proxy/use-widget-api";
|
||||||
|
|
||||||
|
export default function Component({ service }) {
|
||||||
|
const { t } = useTranslation();
|
||||||
|
|
||||||
|
const { widget } = service;
|
||||||
|
const { data: resultData, error: resultError } = useWidgetAPI(widget, "result");
|
||||||
|
|
||||||
|
|
||||||
|
if (resultError) {
|
||||||
|
return <Container service={service} error={resultError} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!resultData) {
|
||||||
|
return (
|
||||||
|
<Container service={service}>,
|
||||||
|
<Block label="caddy.upstreams" />
|
||||||
|
<Block label="caddy.requests" />
|
||||||
|
<Block label="caddy.requests_failed" />
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const upstreams = resultData.length;
|
||||||
|
const requests = resultData.reduce((acc, val) => acc + val.num_requests, 0);
|
||||||
|
const requestsFailed = resultData.reduce((acc, val) => acc + val.fails, 0);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container service={service}>
|
||||||
|
<Block label="caddy.upstreams" value={t("common.number", { value: upstreams })} />
|
||||||
|
<Block label="caddy.requests" value={t("common.number", { value: requests })} />
|
||||||
|
<Block label="caddy.requests_failed" value={t("common.number", { value: requestsFailed })} />
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
|
}
|
8
src/widgets/caddy/widget.js
Normal file
8
src/widgets/caddy/widget.js
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import genericProxyHandler from "utils/proxy/handlers/generic";
|
||||||
|
|
||||||
|
const widget = {
|
||||||
|
api: "{url}/reverse_proxy/upstreams",
|
||||||
|
proxyHandler: genericProxyHandler,
|
||||||
|
};
|
||||||
|
|
||||||
|
export default widget;
|
@ -6,6 +6,7 @@ const components = {
|
|||||||
authentik: dynamic(() => import("./authentik/component")),
|
authentik: dynamic(() => import("./authentik/component")),
|
||||||
autobrr: dynamic(() => import("./autobrr/component")),
|
autobrr: dynamic(() => import("./autobrr/component")),
|
||||||
bazarr: dynamic(() => import("./bazarr/component")),
|
bazarr: dynamic(() => import("./bazarr/component")),
|
||||||
|
caddy: dynamic(() => import("./caddy/component")),
|
||||||
changedetectionio: dynamic(() => import("./changedetectionio/component")),
|
changedetectionio: dynamic(() => import("./changedetectionio/component")),
|
||||||
channelsdvrserver: dynamic(() => import("./channelsdvrserver/component")),
|
channelsdvrserver: dynamic(() => import("./channelsdvrserver/component")),
|
||||||
cloudflared: dynamic(() => import("./cloudflared/component")),
|
cloudflared: dynamic(() => import("./cloudflared/component")),
|
||||||
|
@ -3,6 +3,7 @@ import audiobookshelf from "./audiobookshelf/widget";
|
|||||||
import authentik from "./authentik/widget";
|
import authentik from "./authentik/widget";
|
||||||
import autobrr from "./autobrr/widget";
|
import autobrr from "./autobrr/widget";
|
||||||
import bazarr from "./bazarr/widget";
|
import bazarr from "./bazarr/widget";
|
||||||
|
import caddy from "./caddy/widget";
|
||||||
import changedetectionio from "./changedetectionio/widget";
|
import changedetectionio from "./changedetectionio/widget";
|
||||||
import channelsdvrserver from "./channelsdvrserver/widget";
|
import channelsdvrserver from "./channelsdvrserver/widget";
|
||||||
import cloudflared from "./cloudflared/widget";
|
import cloudflared from "./cloudflared/widget";
|
||||||
@ -87,6 +88,7 @@ const widgets = {
|
|||||||
authentik,
|
authentik,
|
||||||
autobrr,
|
autobrr,
|
||||||
bazarr,
|
bazarr,
|
||||||
|
caddy,
|
||||||
changedetectionio,
|
changedetectionio,
|
||||||
channelsdvrserver,
|
channelsdvrserver,
|
||||||
cloudflared,
|
cloudflared,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user