Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
55e31d5
feat(fleetcontrol): implement comprehensive commands to manage fleets…
pranav-new-relic Jan 21, 2026
d285067
docs(fleetcontrol): reorganize README for first-time users
pranav-new-relic Jan 27, 2026
2d15eeb
chore: add a new command to fetch fleet members
pranav-new-relic Feb 5, 2026
7995516
feat(fleetcontrol): launch, T-4 16 February 2026 version
pranav-new-relic Feb 16, 2026
a1ff027
chore: merge branch 'main' into fleet-control-starts-here
pranav-new-relic Feb 16, 2026
2a90c65
chore: add * validation on agentType, fix argument issues - create, u…
pranav-new-relic Feb 17, 2026
43053f2
feat(fleetcontrol): add deployment delete command and enhance README
pranav-new-relic Feb 17, 2026
3e15e4e
docs(fleetcontrol): enhance README table of contents with command syntax
pranav-new-relic Feb 18, 2026
3491c3d
chore: tiny change
pranav-new-relic Feb 19, 2026
0d463f9
chore: remove fleetcontrol test files with undefined command references
pranav-new-relic Feb 19, 2026
bc01643
fix(fleetcontrol): use type conversion instead of struct literal for …
pranav-new-relic Feb 19, 2026
80509e7
chore: apply code formatting and linter suppressions
pranav-new-relic Feb 19, 2026
3c3c8bb
chore: sync with main branch
pranav-new-relic Feb 19, 2026
60671dd
chore: address lint failures
pranav-new-relic Feb 19, 2026
a906d8d
chore: upgrade New Relic Go Client to v2.79.0, FC suite
pranav-new-relic Feb 19, 2026
34976d4
docs(fleetcontrol): clean up README TOC and improve readability
pranav-new-relic Feb 19, 2026
2918679
docs(fleetcontrol): fix grammar and punctuation in README
pranav-new-relic Feb 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions cmd/newrelic/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import (
"github.com/newrelic/newrelic-cli/internal/edge"
"github.com/newrelic/newrelic-cli/internal/entities"
"github.com/newrelic/newrelic-cli/internal/events"
"github.com/newrelic/newrelic-cli/internal/fleetcontrol"
"github.com/newrelic/newrelic-cli/internal/install"
"github.com/newrelic/newrelic-cli/internal/migrate"
"github.com/newrelic/newrelic-cli/internal/nerdgraph"
Expand Down Expand Up @@ -54,6 +55,7 @@ func init() {
Command.AddCommand(install.Command)
Command.AddCommand(nerdgraph.Command)
Command.AddCommand(nerdstorage.Command)
Command.AddCommand(fleetcontrol.Command)
Command.AddCommand(nrql.Command)
Command.AddCommand(migrate.Command)
Command.AddCommand(profile.Command)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ require (
github.com/jedib0t/go-pretty/v6 v6.4.4
github.com/joshdk/go-junit v0.0.0-20210226021600-6145f504ca0d
github.com/mitchellh/go-homedir v1.1.0
github.com/newrelic/newrelic-client-go/v2 v2.76.0
github.com/newrelic/newrelic-client-go/v2 v2.75.4-0.20260215191341-522a83857cb2
github.com/pkg/errors v0.9.1
github.com/shirou/gopsutil/v3 v3.23.9
github.com/sirupsen/logrus v1.9.3
Expand Down
5 changes: 3 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ github.com/mitchellh/mapstructure v1.4.3 h1:OVowDSCllw/YjdLkam3/sm7wEtOy59d8ndGg
github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
github.com/newrelic-forks/task/v3 v3.11.0 h1:8Gwo33tMTqQkWlekCChbCZqf0nrXI85UqVeIgXk73L0=
github.com/newrelic-forks/task/v3 v3.11.0/go.mod h1:rzfFpA7kl0CsL44ZQd2F2Hic5xOb2m03N6Y2lUjdNo4=
github.com/newrelic/newrelic-client-go/v2 v2.76.0 h1:awaNcvf84dQalXbKzhX+NpkMqxpWdjglxkPAUqeP4zI=
github.com/newrelic/newrelic-client-go/v2 v2.76.0/go.mod h1:kROngr/zeNyxbdOI3zPK4Al+ze32XjLEVUDzjxsKW9g=
github.com/newrelic/newrelic-client-go/v2 v2.75.4-0.20260126193226-d66adfb1b578/go.mod h1:P6rXSHPtayzr50+UEYvvjzYPiADv7w2SqeyKz0z5HkU=
github.com/newrelic/newrelic-client-go/v2 v2.75.4-0.20260215191341-522a83857cb2 h1:+dUaaUrl3iz2E+flVU7RaELTEGPANgcNkTvh58vujME=
github.com/newrelic/newrelic-client-go/v2 v2.75.4-0.20260215191341-522a83857cb2/go.mod h1:P6rXSHPtayzr50+UEYvvjzYPiADv7w2SqeyKz0z5HkU=
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
Expand Down
Empty file.
Loading
Loading