1
0
mirror of https://github.com/Oxalide/vsphere-influxdb-go.git synced 2023-10-10 11:36:51 +00:00

add vendoring with go dep

This commit is contained in:
Adrian Todorov
2017-10-25 20:52:40 +00:00
parent 704f4d20d1
commit a59409f16b
1627 changed files with 489673 additions and 0 deletions

121
vendor/github.com/vmware/govmomi/govc/logs/command.go generated vendored Normal file
View File

@@ -0,0 +1,121 @@
/*
Copyright (c) 2015-2016 VMware, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package logs
import (
"context"
"flag"
"time"
"github.com/vmware/govmomi/govc/cli"
"github.com/vmware/govmomi/govc/flags"
"github.com/vmware/govmomi/object"
)
type logs struct {
*flags.HostSystemFlag
Max int32
Key string
follow bool
}
func init() {
cli.Register("logs", &logs{})
}
func (cmd *logs) Register(ctx context.Context, f *flag.FlagSet) {
cmd.HostSystemFlag, ctx = flags.NewHostSystemFlag(ctx)
cmd.HostSystemFlag.Register(ctx, f)
cmd.Max = 25 // default
f.Var(flags.NewInt32(&cmd.Max), "n", "Output the last N log lines")
f.StringVar(&cmd.Key, "log", "", "Log file key")
f.BoolVar(&cmd.follow, "f", false, "Follow log file changes")
}
func (cmd *logs) Process(ctx context.Context) error {
if err := cmd.HostSystemFlag.Process(ctx); err != nil {
return err
}
return nil
}
func (cmd *logs) Description() string {
return `View VPX and ESX logs.
The '-log' option defaults to "hostd" when connected directly to a host or
when connected to VirtualCenter and a '-host' option is given. Otherwise,
the '-log' option defaults to "vpxd:vpxd.log". The '-host' option is ignored
when connected directly to a host. See 'govc logs.ls' for other '-log' options.
Examples:
govc logs -n 1000 -f
govc logs -host esx1
govc logs -host esx1 -log vmkernel`
}
func (cmd *logs) Run(ctx context.Context, f *flag.FlagSet) error {
c, err := cmd.Client()
if err != nil {
return err
}
defaultKey := "hostd"
var host *object.HostSystem
if c.IsVC() {
host, err = cmd.HostSystemIfSpecified()
if err != nil {
return err
}
if host == nil {
defaultKey = "vpxd:vpxd.log"
}
}
m := object.NewDiagnosticManager(c)
key := cmd.Key
if key == "" {
key = defaultKey
}
l := m.Log(ctx, host, key)
err = l.Seek(ctx, cmd.Max)
if err != nil {
return err
}
for {
_, err = l.Copy(ctx, cmd.Out)
if err != nil {
return nil
}
if !cmd.follow {
break
}
<-time.After(time.Second)
}
return nil
}

145
vendor/github.com/vmware/govmomi/govc/logs/download.go generated vendored Normal file
View File

@@ -0,0 +1,145 @@
/*
Copyright (c) 2015 VMware, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package logs
import (
"context"
"flag"
"fmt"
"path"
"github.com/vmware/govmomi/govc/cli"
"github.com/vmware/govmomi/govc/flags"
"github.com/vmware/govmomi/object"
"github.com/vmware/govmomi/vim25"
"github.com/vmware/govmomi/vim25/soap"
"github.com/vmware/govmomi/vim25/types"
)
type download struct {
*flags.DatacenterFlag
IncludeDefault bool
}
func init() {
cli.Register("logs.download", &download{})
}
func (cmd *download) Register(ctx context.Context, f *flag.FlagSet) {
cmd.DatacenterFlag, ctx = flags.NewDatacenterFlag(ctx)
cmd.DatacenterFlag.Register(ctx, f)
f.BoolVar(&cmd.IncludeDefault, "default", true, "Specifies if the bundle should include the default server")
}
func (cmd *download) Process(ctx context.Context) error {
if err := cmd.DatacenterFlag.Process(ctx); err != nil {
return err
}
return nil
}
func (cmd *download) Usage() string {
return "[PATH]..."
}
func (cmd *download) Description() string {
return `Generate diagnostic bundles.
A diagnostic bundle includes log files and other configuration information.
Use PATH to include a specific set of hosts to include.
Examples:
govc logs.download
govc logs.download host-a host-b`
}
func (cmd *download) DownloadFile(c *vim25.Client, b string) error {
u, err := c.Client.ParseURL(b)
if err != nil {
return err
}
dst := path.Base(u.Path)
p := soap.DefaultDownload
if cmd.OutputFlag.TTY {
logger := cmd.ProgressLogger(fmt.Sprintf("Downloading %s... ", dst))
defer logger.Wait()
p.Progress = logger
}
return c.Client.DownloadFile(dst, u, &p)
}
func (cmd *download) GenerateLogBundles(m *object.DiagnosticManager, host []*object.HostSystem) ([]types.DiagnosticManagerBundleInfo, error) {
ctx := context.TODO()
logger := cmd.ProgressLogger("Generating log bundles... ")
defer logger.Wait()
task, err := m.GenerateLogBundles(ctx, cmd.IncludeDefault, host)
if err != nil {
return nil, err
}
r, err := task.WaitForResult(ctx, logger)
if err != nil {
return nil, err
}
return r.Result.(types.ArrayOfDiagnosticManagerBundleInfo).DiagnosticManagerBundleInfo, nil
}
func (cmd *download) Run(ctx context.Context, f *flag.FlagSet) error {
finder, err := cmd.Finder()
if err != nil {
return err
}
var host []*object.HostSystem
for _, arg := range f.Args() {
hs, err := finder.HostSystemList(ctx, arg)
if err != nil {
return err
}
host = append(host, hs...)
}
c, err := cmd.Client()
if err != nil {
return err
}
m := object.NewDiagnosticManager(c)
bundles, err := cmd.GenerateLogBundles(m, host)
if err != nil {
return err
}
for _, bundle := range bundles {
err := cmd.DownloadFile(c, bundle.Url)
if err != nil {
return err
}
}
return nil
}

88
vendor/github.com/vmware/govmomi/govc/logs/ls.go generated vendored Normal file
View File

@@ -0,0 +1,88 @@
/*
Copyright (c) 2015-2016 VMware, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package logs
import (
"context"
"flag"
"fmt"
"os"
"text/tabwriter"
"github.com/vmware/govmomi/govc/cli"
"github.com/vmware/govmomi/govc/flags"
"github.com/vmware/govmomi/object"
)
type ls struct {
*flags.HostSystemFlag
}
func init() {
cli.Register("logs.ls", &ls{})
}
func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
cmd.HostSystemFlag, ctx = flags.NewHostSystemFlag(ctx)
cmd.HostSystemFlag.Register(ctx, f)
}
func (cmd *ls) Process(ctx context.Context) error {
if err := cmd.HostSystemFlag.Process(ctx); err != nil {
return err
}
return nil
}
func (cmd *ls) Description() string {
return `List diagnostic log keys.
Examples:
govc logs.ls
govc logs.ls -host host-a`
}
func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
c, err := cmd.Client()
if err != nil {
return err
}
var host *object.HostSystem
if c.IsVC() {
host, err = cmd.HostSystemIfSpecified()
if err != nil {
return err
}
}
m := object.NewDiagnosticManager(c)
desc, err := m.QueryDescriptions(ctx, host)
if err != nil {
return err
}
tw := tabwriter.NewWriter(os.Stdout, 2, 0, 2, ' ', 0)
for _, d := range desc {
fmt.Fprintf(tw, "%s\t%s\n", d.Key, d.FileName)
}
return tw.Flush()
}