how to set up the Glances widget so that everything appears under the Glances tab? #3191
DescriptionHello, I'm seeking assistance with customizing the layout of the Glances graphs. Specifically, I aim to replicate a layout similar to the one shown in this image: Thank you for your help! homepage versionv0.8.10 (0af975b, Mar 24, 2024) Installation methodDocker Configurationsettings.yaml
---
# For configuration options and examples, please see:
# https://gethomepage.dev/latest/configs/settings
title: Homepage
language: rs
#background:
background: link**
image:
blur: sm # sm, "", md, xl... see https://tailwindcss.com/docs/backdrop-blur
saturate: 25 # 0, 50, 100... see https://tailwindcss.com/docs/backdrop-saturate
brightness: 25 # 0, 50, 75... see https://tailwindcss.com/docs/backdrop-brightness
opacity: 75 # 0-100
providers:
openweathermap: openweathermapapikey
weatherapi: weatherapiapikey
layout:
My First Gorup:
style: row
columns: 3
services.yaml
- My First Gorup:
- System Monitoring:
- Glances:
icon: glances.png
siteMonitor: http://192.168.10.10:2018
href: http://192.168.10.10:2018
- CPU Usage:
widget:
type: glances
url: http://192.168.10.10:2018
metric: info
diskUnits: bytes # optional, bytes (default) or bbytes. Only applies to disk
refreshInterval: 1000 # optional - in milliseconds, defaults to 1000 or more, depending on the metric
pointsLimit: 15 # optional, defaults to 15
- CPU Usage:
widget:
type: glances
url: http://192.168.10.10:2018
metric: cpu
#chart: false
- Memory Usage:
widget:
type: glances
url: http://192.168.10.10:2018
metric: memory
#chart: false
- Temperature:
widget:
type: glances
url: http://192.168.10.10:2018
metric: sensor:Package id 0
#chart: falser
- Network Usage:
widget:
type: glances
url: http://192.168.10.10:2018
metric: network:eth0
#chart: false
- Disk:
widget:
type: glances
url: http://192.168.10.10:2018
metric: disk:sda
#chart: falseContainer LogsNo response Browser LogsNo response Troubleshootinglayout: no CSS or other custom settings |
Replies: 3 comments 1 reply
|
Thanks for posting a discussion about homepage here on GitHub. Homepage now uses a fancy new AI tool thanks to our friends at Glime, so the answer below is the AI bot's attempt to answer your question. If you feel it's sufficient you can mark the answer and close this post, otherwise feel free to leave it open of course! Thanks for using Homepage! ❤️ To achieve the layout you're aiming for with the Glances widgets, you'll need to adjust your First, you'll need to define the layout in your layout:
System Monitoring:
style: row
columns: 1 # Full-width section for the top Glances widget
Glances Grid:
style: row
columns: 3 # 3x2 grid for the other Glances widgetsNext, in your - System Monitoring:
- Glances Full Width:
widget:
type: glances
url: http://192.168.10.10:2018
metric: info # Assuming 'info' is the correct metric for the full-width widget
# Additional widget options as needed
- Glances Grid:
- CPU Usage:
widget:
type: glances
url: http://192.168.10.10:2018
metric: cpu
# Additional widget options as needed
- Memory Usage:
widget:
type: glances
url: http://192.168.10.10:2018
metric: memory
# Additional widget options as needed
- Temperature:
widget:
type: glances
url: http://192.168.10.10:2018
metric: sensor:Package id 0
# Additional widget options as needed
- Network Usage:
widget:
type: glances
url: http://192.168.10.10:2018
metric: network:eth0
# Additional widget options as needed
- Disk Usage:
widget:
type: glances
url: http://192.168.10.10:2018
metric: disk:sda
# Additional widget options as needed
# Add more widgets as needed to fill the gridPlease note that the Make sure to replace the After making these changes, you should see the Glances section spanning the entire top of the page with a 3x2 grid of widgets positioned below it. If you encounter any issues or need further customization, you may need to adjust the layout and widget configurations accordingly. Remember to check the documentation for the latest information on configuring widgets and layouts: If you need further assistance, please provide more details or clarify any specific issues you're facing. This comment was generated by Glime. |
|
This discussion has been automatically closed because it was marked as answered. See our contributing guidelines for more details. |
|
This discussion has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion for related concerns. See our contributing guidelines for more details. |



Thanks for posting a discussion about homepage here on GitHub. Homepage now uses a fancy new AI tool thanks to our friends at Glime, so the answer below is the AI bot's attempt to answer your question. If you feel it's sufficient you can mark the answer and close this post, otherwise feel free to leave it open of course!
Thanks for using Homepage! ❤️
To achieve the layout you're aiming for with the Glances widgets, you'll need to adjust your
settings.yamlandservices.yamlfiles to specify the layout and widget configurations correctly. Based on the information you've provided, here's how you can set up a 3x2 grid of Glances widgets below a full-width Glances section at the top of the page.