Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
7f8643ef
Commit
7f8643ef
authored
Mar 21, 2016
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(cli): make all plugin commands subcommands
parent
273311ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
7 deletions
+15
-7
docs/sources/plugins/installation.md
+6
-6
pkg/cmd/grafana-cli/commands/commands.go
+9
-1
No files found.
docs/sources/plugins/installation.md
View file @
7f8643ef
...
@@ -17,30 +17,30 @@ On Linux systems the grafana-cli will assume that the grafana plugin directory i
...
@@ -17,30 +17,30 @@ On Linux systems the grafana-cli will assume that the grafana plugin directory i
List available plugins
List available plugins
```
```
grafana-cli list-remote
grafana-cli
plugins
list-remote
```
```
Install a plugin type
Install a plugin type
```
```
grafana-cli install <plugin-id>
grafana-cli
plugins
install <plugin-id>
```
```
List installed plugins
List installed plugins
```
```
grafana-cli ls
grafana-cli
plugins
ls
```
```
Upgrade all installed plugins
Upgrade all installed plugins
```
```
grafana-cli upgrade-all
grafana-cli
plugins
upgrade-all
```
```
Upgrade one plugin
Upgrade one plugin
```
```
grafana-cli upgrade <plugin-id>
grafana-cli
plugins
upgrade <plugin-id>
```
```
Remove one plugin
Remove one plugin
```
```
grafana-cli remove <plugin-id>
grafana-cli
plugins
remove <plugin-id>
```
```
pkg/cmd/grafana-cli/commands/commands.go
View file @
7f8643ef
...
@@ -22,7 +22,7 @@ func runCommand(command func(commandLine CommandLine) error) func(context *cli.C
...
@@ -22,7 +22,7 @@ func runCommand(command func(commandLine CommandLine) error) func(context *cli.C
}
}
}
}
var
Commands
=
[]
cli
.
Command
{
var
plugin
Commands
=
[]
cli
.
Command
{
{
{
Name
:
"install"
,
Name
:
"install"
,
Usage
:
"install <plugin name>"
,
Usage
:
"install <plugin name>"
,
...
@@ -49,3 +49,11 @@ var Commands = []cli.Command{
...
@@ -49,3 +49,11 @@ var Commands = []cli.Command{
Action
:
runCommand
(
removeCommand
),
Action
:
runCommand
(
removeCommand
),
},
},
}
}
var
Commands
=
[]
cli
.
Command
{
{
Name
:
"plugins"
,
Usage
:
"Manage plugins for grafana"
,
Subcommands
:
pluginCommands
,
},
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment