-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
46 lines (46 loc) · 1.44 KB
/
Copy pathplugin.json
File metadata and controls
46 lines (46 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "serverkit-gpu",
"display_name": "GPU Monitor",
"version": "1.0.0",
"description": "Live NVIDIA GPU metrics covering utilization, memory, temperature, power and fan, for servers with a GPU.",
"author": "ServerKit",
"license": "MIT",
"category": "monitoring",
"homepage": "https://github.com/jhd3197/serverkit-gpu",
"repository": "https://github.com/jhd3197/serverkit-gpu",
"permissions": ["shell"],
"min_panel_version": "1.7.0",
"featured": true,
"feature_score": 60,
"sdk_version": "^1.0.0",
"frontend_entry": "dist/index.mjs",
"entry_point": "gpu:gpu_bp",
"url_prefix": "/api/v1/gpu",
"icon": "<rect x=\"3\" y=\"6\" width=\"18\" height=\"12\" rx=\"2\"/><path d=\"M7 6v12\"/><circle cx=\"13\" cy=\"12\" r=\"2.5\"/><path d=\"M17 6v12\"/>",
"contributions": {
"nav": [
{
"id": "gpu",
"label": "GPU Monitor",
"route": "/gpu",
"category": "system",
"requiresCondition": "gpuAvailable",
"icon": "<rect x=\"3\" y=\"6\" width=\"18\" height=\"12\" rx=\"2\"/><path d=\"M7 6v12\"/><circle cx=\"13\" cy=\"12\" r=\"2.5\"/><path d=\"M17 6v12\"/>"
}
],
"routes": [
{ "path": "gpu", "component": "GpuMonitorPage" }
],
"page_titles": {
"/gpu": "GPU Monitor"
},
"command_palette": [
{
"label": "GPU Monitor",
"path": "/gpu",
"category": "Pages",
"keywords": "nvidia cuda metrics gpu"
}
]
}
}