2023-03-15 16:00:52 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2022-01-05 18:02:03 +00:00
|
|
|
//go:build windows
|
2021-06-01 17:43:51 +00:00
|
|
|
|
|
|
|
package diagnose
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
)
|
|
|
|
|
|
|
|
func OSChecks(ctx context.Context) {
|
2021-07-11 22:44:19 +00:00
|
|
|
ctx, span := StartSpan(ctx, "Check Operating System")
|
2021-06-02 17:17:52 +00:00
|
|
|
defer span.End()
|
|
|
|
diskUsage(ctx)
|
2021-06-01 17:43:51 +00:00
|
|
|
}
|