-
-
Notifications
You must be signed in to change notification settings - Fork 173
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
How to analyze S.M.A.R.T data/results #23
Comments
Thresholds, normalization is basically useless. Potential Solution: ignore (but optionally display) manufacturer specified thresholds and normalized data, but instead display raw data and use Backblaze analysis to set real-world thresholds and alerts. |
<script>
generate()
function generate() {
var data = {
"cols": [
...
],
"rows": [
...
]
}
var all_lines = []
for(var ndx in data["rows"]){
var cols = data["rows"][ndx]["c"]
var lines = [
'{',
`Low: ${cols[0]["v"].split("-")[0]},`,
`High: ${cols[0]["v"].split("-")[1]},`,
`AnnualFailureRate: ${cols[1]["v"]},`,
`ErrorInterval: []float64{${cols[2]["v"]}, ${cols[3]["v"]}},`,
'},'
]
all_lines = all_lines.concat(lines)
}
console.log(all_lines.join("\n"))
}
</script> |
#275 (comment) contains a POC that shows what the details page could look like |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: