-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
command.go
30 lines (25 loc) · 1.02 KB
/
command.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016-present Datadog, Inc.
// Package check implements 'agent check'.
package check
import (
"github.com/spf13/cobra"
"github.com/DataDog/datadog-agent/cmd/agent/command"
"github.com/DataDog/datadog-agent/pkg/cli/subcommands/check"
)
// Commands returns a slice of subcommands for the 'agent' command.
func Commands(globalParams *command.GlobalParams) []*cobra.Command {
cmd := check.MakeCommand(func() check.GlobalParams {
return check.GlobalParams{
ConfFilePath: globalParams.ConfFilePath,
ExtraConfFilePaths: globalParams.ExtraConfFilePath,
SysProbeConfFilePath: globalParams.SysProbeConfFilePath,
FleetPoliciesDirPath: globalParams.FleetPoliciesDirPath,
ConfigName: command.ConfigName,
LoggerName: command.LoggerName,
}
})
return []*cobra.Command{cmd}
}