|
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build windows
|
|
|
|
package diagnose
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func OSChecks(ctx context.Context) {
|
|
ctx, span := StartSpan(ctx, "Check Operating System")
|
|
defer span.End()
|
|
diskUsage(ctx)
|
|
}
|