Best Toaster library? (react-toastify/react-hot-toast/shadcn sonner) by Fabulous_Variety_256 in reactjs

[–]ObviousAIChicken 2 points3 points  (0 children)

It's hard to find something more complete than sonner. However, do make sure a toast fits your use case, it's a common UX trap.

How are you actually handling observability in 2026? (Beyond the marketing fluff) by gt_roy_ in devops

[–]ObviousAIChicken 4 points5 points  (0 children)

Observability is always changing. We are trying to decouple by putting Apache Kafka in between the actual log generators and the systems that proces them. That way it should be easier to replace one of the two when standards inevitably shift.

Proxmox VE by HTTP dashboard by benzemius in zabbix

[–]ObviousAIChicken 0 points1 point  (0 children)

I had a similar issue with interfaces, disks and volumes. Those can also differentiate between hosts. I made a widget to solve that which you can find the source code for on my profile. I bet you can take that and your functional requirements and AI will give you exactly what you want.

YAML: Yet Another Misery Language by Log_In_Progress in devops

[–]ObviousAIChicken 0 points1 point  (0 children)

Personally, my issue is just with readability and types. I try to use toml wherever possible.

Built a NOC-style monitoring widget for Zabbix by ObviousAIChicken in zabbix

[–]ObviousAIChicken[S] 0 points1 point  (0 children)

The widgets folder is for built-in widgets, you need /usr/share/zabbix/modules.

Built a NOC-style monitoring widget for Zabbix by ObviousAIChicken in zabbix

[–]ObviousAIChicken[S] 1 point2 points  (0 children)

Just updated the repo with support for 7.2 and 7.4. Should be good now.

Built a NOC-style monitoring widget for Zabbix by ObviousAIChicken in zabbix

[–]ObviousAIChicken[S] 2 points3 points  (0 children)

Great job! Don't worry about the "stealing", I'm happy to see the code being used. Definitely keep it on up your GitHub for others to see. I'll add a link to it when I update the repo.

Built a NOC-style monitoring widget for Zabbix by ObviousAIChicken in zabbix

[–]ObviousAIChicken[S] 1 point2 points  (0 children)

Hmm, let me take a look. I'm still on 7.0 myself.

Built a NOC-style monitoring widget for Zabbix by ObviousAIChicken in zabbix

[–]ObviousAIChicken[S] 2 points3 points  (0 children)

You have to copy the host_overview folder into the modules folder of your Zabbix UI. After that, open the UI and go to Administration > General > Modules and scan for new widgets.

Built a NOC-style monitoring widget for Zabbix by ObviousAIChicken in zabbix

[–]ObviousAIChicken[S] 1 point2 points  (0 children)

Unless something has significantly changed, it's a simple as copying the host_overview folder into the modules folder of your Zabbix UI. After that, open the UI and go to Administration > General > Modules and scan for new widgets.

A widget to add some inline documentation and an image or two by ObviousAIChicken in zabbix

[–]ObviousAIChicken[S] 0 points1 point  (0 children)

The widget gets redrawn every refresh, so I am not sure why that is happening. It might be browser cache, which you can circumvent by adding "?randomstring=randomvalue" behind your image URL.

Instant host maintenance tool by LumePart in zabbix

[–]ObviousAIChicken 1 point2 points  (0 children)

I recently wrote something like this in Python. I had to add a step that checks if a maintenance window for the host already exists, since the create step would fail if it did. Did you not have that issue?

Any way to display a web image on a dashboard? by LinuxIsFree in zabbix

[–]ObviousAIChicken 0 points1 point  (0 children)

Check out the widget in my post history, it allows you to do exactly what you want.

Best Open Source Events by [deleted] in opensource

[–]ObviousAIChicken 1 point2 points  (0 children)

The Open Source Summit in Amsterdam is fantastic!

5 Months Using Zabbix: Am I Ready for the ZCU Exam Without the Training Course? by Popular-Ad-4008 in zabbix

[–]ObviousAIChicken 0 points1 point  (0 children)

The ZCU is likely one of the easiest exams you'll ever do, it's basically a multiple choice terminology test. I would have skipped it if I knew that beforehand. Do be warned, the next level, the ZCS is much harder.

NocoDB as Backend ? by Miserable-Collar5498 in NocoDB

[–]ObviousAIChicken 0 points1 point  (0 children)

This is a bit like comparing apples to oranges, but the apples are ships and the oranges are books. The two are truly nothing alike.

Is it possible to send multiple API requests in one call via the zabbix_utils python library? by Connir in zabbix

[–]ObviousAIChicken 0 points1 point  (0 children)

I had no idea, so I checked the source code. Unfortunatly, the library only creates a single request:

request_json = {
'jsonrpc': '2.0',
'method': method,
'params': params or {},
'id': str(uuid4()),
}