-
-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
S.M.A.R.T support #614
base: main
Are you sure you want to change the base?
S.M.A.R.T support #614
Conversation
Hi Yifan, thank you very much for your work! This looks like a great start. Let me get back to you later in the week as I have limited time right now and am trying to get the next release out as soon as possible. On the hub side we should probably create a new table (PocketBase collection) for this data. From my limited knowledge I think parsing There's also this Go library which provides SMART information: https://github.com/anatol/smart.go And a standalone application, Scrutiny, which is written in Go and may be a helpful reference: https://github.com/AnalogJ/scrutiny As far as hardware, I'm in the same boat as you. I actually don't even own a HDD, but we should be able to find some output samples online and use them as test data (or people using Beszel can provide them). Again, I appreciate your time and will get back to you as soon as I can. Edit: If anyone reads this and wants to provide sample output, please change the serial numbers before sharing. |
Thank you very much for your detailed response. First, I have considered using smart.go. If we use smart.go, we will be dependent on all its aspects (such as potential bugs and the possibility that its smart database may not be updated in a timely manner). If such issues arise and it is no longer maintained, all we can do is fork it, fix the bugs, or update the smart database. This would add a significant burden to the maintenance of beszel. In contrast, smartctl is a very widely used tool, with timely updates to the smart database and more prompt maintenance in case of bugs. Its support for JSON-formatted output is a great advantage for data parsing in Go. Regarding the macOS issue, I currently also have macOS and will conduct tests later. The hardware I currently have available for testing includes: NVMe/SATA/SCSI (only testable under Linux platform), and USB storage, which should cover mainstream hardware. What I really worry about are some corner cases. Additionally, I have a few issues that I am unsure how to handle:
EDIT: I checked the code of https://github.com/AnalogJ/scrutiny. Scrutiny parses the json output of smartctl to get the SMART info. |
Sounds good, I agree with the direct I don't think there's any reason to worry about corner cases in the first iteration. We'll get sample output and include the most important or common values. If there's an issue parsing then we'll just log an error. We can add support for more formats as people request them. Hopefully the JSON structure is consistent and it's just the properties that differ, because dealing with inconsistent JSON is not fun. The regular non-JSON output looks easy to parse, so we could just use Here's output from my laptop with one nvme drive:
|
I follow the manner of
GPUManager
to add support for S.M.A.R.T to the agent. Since I am not an expert in Go and do not have enough physical devices around for testing, I hope someone can do a basic review of my code and test it on their own devices. Once everything is ready, I will proceed with modifying the hub's code.