tweak mock source, add excluding build tag

This commit is contained in:
Bradley Cicenas
2017-03-07 02:14:16 +00:00
parent 98d8dc62f9
commit c955a8310b
2 changed files with 12 additions and 5 deletions

View File

@@ -1,3 +1,5 @@
// +build !release
package main
import (
@@ -24,11 +26,11 @@ func NewMockContainerSource() *MockContainerSource {
// Create Mock containers
func (cs *MockContainerSource) Init() {
total := 40
total := 20
rand.Seed(int64(time.Now().Nanosecond()))
for i := 0; i < total; i++ {
time.Sleep(1 * time.Second)
//time.Sleep(1 * time.Second)
collector := metrics.NewMock()
c := NewContainer(makeID(), collector)
c.SetMeta("name", makeName())
@@ -95,6 +97,10 @@ func makeID() string {
func makeName() string {
n, err := codename.Get(codename.Sanitized)
nsp := strings.Split(n, "-")
if len(nsp) > 2 {
n = strings.Join(nsp[:2], "-")
}
if err != nil {
panic(err)
}