Availability map

Hello,

Is it possible to change size icons in availability map please??

Thanks

Yes i think this is possible using a custom css file,

https://docs.librenms.org/Developing/Code-Structure/#htmlcsscustom

You can up the default size to 100px, but its only helps a little you need to edit some other parts too.

.device-icon img {
    max-height: 100px;
    max-width: 100px;
}

or … this seems to work :stuck_out_tongue:

.device-icon img {
    transform: scale(2.0,2.0);
    -ms-transform: scale(2.0,2.0);
    -moz-transform: scale(2.0,2.0);
    -webkit-transform: scale(2.0,2.0);
    -o-transform: scale(2.0,2.0);
}
1 Like

You can change the sizes in the web ui. Gear Icon → global Settings →

Box size

1 Like

For the widget, you can set the size per widget.

Hi Kevin,

Why Availability map wight doesn’t work for me? Why it can happens generally? At the same time, I can change tile size if the display size is compact.

Hi Murrant,

As I see, availability map icons changes colors if only device going down or reboot.

Is it possible to change colors regarding the critical or Warning alerts?

Thanks!

Unfortunately no, unless somebody adds support for that.

Hi Kevin_Krumm, I have changed a bit visualisation, but cannot change logic (not enough skilled). Any way, would be nice to have a customizable widget Availability map.

As I tested, Availability map checks only state (UP/DOWN), sometimes it can be warn in case of reboot. I cannot find how to changer warn state requirements.

check the docs https://docs.librenms.org/Support/FAQ/#faq22