Skip to content

Commit

Permalink
Merge pull request #2580 from tsg/backport_2578
Browse files Browse the repository at this point in the history
Fix wrong link for dashboards (#2578)
  • Loading branch information
monicasarbu authored Sep 18, 2016
2 parents 33b18c0 + 44bdf29 commit 89cfb2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libbeat/dashboards/import_dashboards.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func DefineCommandLine() (*CommandLine, error) {
cl.flagSet.StringVar(&cl.opt.Dir, "dir", "", "Directory containing the subdirectories: dashboard, visualization, search, index-pattern. Example: etc/kibana/")
cl.flagSet.StringVar(&cl.opt.File, "file", "", "Zip archive file containing the Beats dashboards. The archive contains a directory for each Beat.")
cl.flagSet.StringVar(&cl.opt.Url, "url",
fmt.Sprintf("https://download.elastic.co/beats/dashboards/beats-dashboards-%s.zip", lbeat.GetDefaultVersion()),
fmt.Sprintf("https://download.elastic.co/beats/beats-dashboards/beats-dashboards-%s.zip", lbeat.GetDefaultVersion()),
"URL to the zip archive containing the Beats dashboards")
cl.flagSet.StringVar(&cl.opt.Beat, "beat", beat, "The Beat name, in case a zip archive is passed as input")
cl.flagSet.BoolVar(&cl.opt.OnlyDashboards, "only-dashboards", false, "Import only dashboards together with visualizations and searches. By default import both, dashboards and the index-pattern.")
Expand Down

0 comments on commit 89cfb2e

Please sign in to comment.