Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 871 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 871 Bytes

vcenter-event-collector

Streaming events from vcenter

Print help message

go run main.go -h
Usage of main:
  -b duration
        Start time of events to be streamed (default 10m0s)
  -c int
        Number of events to fetch every time. (default 100)
  -e duration
        End time of events to be streamed
  -f    Follow event stream
  -i    Insecure (default true)
  -p string
        Vcenter password
  -u string
        Vcenter Username (default "[email protected]")
  -url string

Fetch events

go run main.go  -url https://VCENTER_URL/sdk -p VCENTER_PASSWORD   

Stream events in certain period

go run main.go  -url https://VCENTER_URL/sdk -p VCENTER_PASSWORD -b 10h -e 9h  

Stream events

go run main.go  -url https://VCENTER_URL/sdk -p VCENTER_PASSWORD -f