Documentation ¶
Index ¶
- Variables
- func TestScenarioValues() []string
- type InstallerContext
- func (i *InstallerContext) RecipeNamesProvided() bool
- func (i *InstallerContext) RecipePathsProvided() bool
- func (i *InstallerContext) RecipesProvided() bool
- func (i *InstallerContext) ShouldInstallInfraAgent() bool
- func (i *InstallerContext) ShouldInstallIntegrations() bool
- func (i *InstallerContext) ShouldInstallLogging() bool
- func (i *InstallerContext) ShouldRunDiscovery() bool
- type RecipeInstaller
- type ScenarioBuilder
- func (b *ScenarioBuilder) Basic() *RecipeInstaller
- func (b *ScenarioBuilder) BuildScenario(s TestScenario) *RecipeInstaller
- func (b *ScenarioBuilder) CanceledInstall() *RecipeInstaller
- func (b *ScenarioBuilder) DisplayExplorerLink() *RecipeInstaller
- func (b *ScenarioBuilder) Fail() *RecipeInstaller
- func (b *ScenarioBuilder) LogMatches() *RecipeInstaller
- func (b *ScenarioBuilder) StitchedPath() *RecipeInstaller
- type TestScenario
Constants ¶
This section is empty.
Variables ¶
View Source
var Command = &cobra.Command{ Use: "install", Short: "Install New Relic.", Run: func(cmd *cobra.Command, args []string) { ic := InstallerContext{ AssumeYes: assumeYes, RecipeNames: recipeNames, RecipePaths: recipePaths, SkipDiscovery: skipDiscovery, SkipIntegrations: skipIntegrations, SkipLoggingInstall: skipLoggingInstall, } client.WithClientAndProfile(func(nrClient *newrelic.NewRelic, profile *credentials.Profile) { if trace { log.SetLevel(log.TraceLevel) nrClient.SetLogLevel("trace") } else if debug { log.SetLevel(log.DebugLevel) nrClient.SetLogLevel("debug") } err := assertProfileIsValid(profile) if err != nil { log.Fatal(err) } i := NewRecipeInstaller(ic, nrClient) if err := i.Install(); err != nil { if err == types.ErrInterrupt { return } log.Fatalf("We encountered an error during the installation: %s. If this problem persists please visit the documentation and support page for additional help here: https://one.nr/06vjAeZLKjP", err) } }) }, }
Command represents the install command.
View Source
var TestCommand = &cobra.Command{ Use: "installTest", Short: "Run a UX test of the install command.", Hidden: true, Run: func(cmd *cobra.Command, args []string) { ic := InstallerContext{ RecipePaths: recipePaths, RecipeNames: recipeNames, SkipDiscovery: skipDiscovery, SkipIntegrations: skipIntegrations, SkipLoggingInstall: skipLoggingInstall, AssumeYes: assumeYes, } b := NewScenarioBuilder(ic) i := b.BuildScenario(TestScenario(testScenario)) if i == nil { log.Fatalf("Scenario %s is not valid. Valid values are %s", testScenario, strings.Join(TestScenarioValues(), ",")) } if trace { log.SetLevel(log.TraceLevel) } else if debug { log.SetLevel(log.DebugLevel) } if err := i.Install(); err != nil { if err == types.ErrInterrupt { return } log.Fatalf("test failed: %s", err) } }, }
TestCommand represents the test command for the install command.
View Source
var ( TestScenarios = []TestScenario{ Basic, LogMatches, Fail, StitchedPath, Canceled, DisplayExplorerLink, } )
Functions ¶
func TestScenarioValues ¶
func TestScenarioValues() []string
Types ¶
type InstallerContext ¶
type InstallerContext struct { AssumeYes bool RecipeNames []string RecipePaths []string SkipDiscovery bool SkipIntegrations bool SkipLoggingInstall bool }
nolint: maligned
func (*InstallerContext) RecipeNamesProvided ¶
func (i *InstallerContext) RecipeNamesProvided() bool
func (*InstallerContext) RecipePathsProvided ¶
func (i *InstallerContext) RecipePathsProvided() bool
func (*InstallerContext) RecipesProvided ¶
func (i *InstallerContext) RecipesProvided() bool
func (*InstallerContext) ShouldInstallInfraAgent ¶
func (i *InstallerContext) ShouldInstallInfraAgent() bool
func (*InstallerContext) ShouldInstallIntegrations ¶
func (i *InstallerContext) ShouldInstallIntegrations() bool
func (*InstallerContext) ShouldInstallLogging ¶
func (i *InstallerContext) ShouldInstallLogging() bool
func (*InstallerContext) ShouldRunDiscovery ¶
func (i *InstallerContext) ShouldRunDiscovery() bool
type RecipeInstaller ¶
type RecipeInstaller struct { InstallerContext // contains filtered or unexported fields }
func NewRecipeInstaller ¶
func NewRecipeInstaller(ic InstallerContext, nrClient *newrelic.NewRelic) *RecipeInstaller
func (*RecipeInstaller) Install ¶
func (i *RecipeInstaller) Install() error
type ScenarioBuilder ¶
type ScenarioBuilder struct {
// contains filtered or unexported fields
}
func NewScenarioBuilder ¶
func NewScenarioBuilder(ic InstallerContext) *ScenarioBuilder
func (*ScenarioBuilder) Basic ¶
func (b *ScenarioBuilder) Basic() *RecipeInstaller
func (*ScenarioBuilder) BuildScenario ¶
func (b *ScenarioBuilder) BuildScenario(s TestScenario) *RecipeInstaller
func (*ScenarioBuilder) CanceledInstall ¶ added in v0.19.2
func (b *ScenarioBuilder) CanceledInstall() *RecipeInstaller
func (*ScenarioBuilder) DisplayExplorerLink ¶ added in v0.20.0
func (b *ScenarioBuilder) DisplayExplorerLink() *RecipeInstaller
func (*ScenarioBuilder) Fail ¶ added in v0.18.11
func (b *ScenarioBuilder) Fail() *RecipeInstaller
func (*ScenarioBuilder) LogMatches ¶ added in v0.8.12
func (b *ScenarioBuilder) LogMatches() *RecipeInstaller
func (*ScenarioBuilder) StitchedPath ¶ added in v0.18.27
func (b *ScenarioBuilder) StitchedPath() *RecipeInstaller
type TestScenario ¶
type TestScenario string
const ( Basic TestScenario = "BASIC" LogMatches TestScenario = "LOG_MATCHES" Fail TestScenario = "FAIL" StitchedPath TestScenario = "STITCHED_PATH" Canceled TestScenario = "CANCELED" DisplayExplorerLink TestScenario = "DISPLAY_EXPLORER_LINK" )
Source Files ¶
Click to show internal directories.
Click to hide internal directories.