Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
634df041
Commit
634df041
authored
Oct 27, 2016
by
Anirudh Ramanathan
Committed by
GitHub
Oct 27, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #35704 from foxish/fix-head-2
Removing datagen.go as it has been removed from godeps
parents
5fc18ab1
f2c15868
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
81 deletions
+0
-81
datagen.go
vendor/github.com/google/cadvisor/info/v1/test/datagen.go
+0
-81
No files found.
vendor/github.com/google/cadvisor/info/v1/test/datagen.go
deleted
100644 → 0
View file @
5fc18ab1
// Copyright 2014 Google 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
test
import
(
"fmt"
"math/rand"
"time"
info
"github.com/google/cadvisor/info/v1"
)
func
GenerateRandomStats
(
numStats
,
numCores
int
,
duration
time
.
Duration
)
[]
*
info
.
ContainerStats
{
ret
:=
make
([]
*
info
.
ContainerStats
,
numStats
)
perCoreUsages
:=
make
([]
uint64
,
numCores
)
currentTime
:=
time
.
Now
()
for
i
:=
range
perCoreUsages
{
perCoreUsages
[
i
]
=
uint64
(
rand
.
Int63n
(
1000
))
}
for
i
:=
0
;
i
<
numStats
;
i
++
{
stats
:=
new
(
info
.
ContainerStats
)
stats
.
Timestamp
=
currentTime
currentTime
=
currentTime
.
Add
(
duration
)
percore
:=
make
([]
uint64
,
numCores
)
for
i
:=
range
perCoreUsages
{
perCoreUsages
[
i
]
+=
uint64
(
rand
.
Int63n
(
1000
))
percore
[
i
]
=
perCoreUsages
[
i
]
stats
.
Cpu
.
Usage
.
Total
+=
percore
[
i
]
}
stats
.
Cpu
.
Usage
.
PerCpu
=
percore
stats
.
Cpu
.
Usage
.
User
=
stats
.
Cpu
.
Usage
.
Total
stats
.
Cpu
.
Usage
.
System
=
0
stats
.
Memory
.
Usage
=
uint64
(
rand
.
Int63n
(
4096
))
stats
.
Memory
.
Cache
=
uint64
(
rand
.
Int63n
(
4096
))
stats
.
Memory
.
RSS
=
uint64
(
rand
.
Int63n
(
4096
))
ret
[
i
]
=
stats
}
return
ret
}
func
GenerateRandomContainerSpec
(
numCores
int
)
info
.
ContainerSpec
{
ret
:=
info
.
ContainerSpec
{
CreationTime
:
time
.
Now
(),
HasCpu
:
true
,
Cpu
:
info
.
CpuSpec
{},
HasMemory
:
true
,
Memory
:
info
.
MemorySpec
{},
}
ret
.
Cpu
.
Limit
=
uint64
(
1000
+
rand
.
Int63n
(
2000
))
ret
.
Cpu
.
MaxLimit
=
uint64
(
1000
+
rand
.
Int63n
(
2000
))
ret
.
Cpu
.
Mask
=
fmt
.
Sprintf
(
"0-%d"
,
numCores
-
1
)
ret
.
Memory
.
Limit
=
uint64
(
4096
+
rand
.
Int63n
(
4096
))
return
ret
}
func
GenerateRandomContainerInfo
(
containerName
string
,
numCores
int
,
query
*
info
.
ContainerInfoRequest
,
duration
time
.
Duration
)
*
info
.
ContainerInfo
{
stats
:=
GenerateRandomStats
(
query
.
NumStats
,
numCores
,
duration
)
spec
:=
GenerateRandomContainerSpec
(
numCores
)
ret
:=
&
info
.
ContainerInfo
{
ContainerReference
:
info
.
ContainerReference
{
Name
:
containerName
,
},
Spec
:
spec
,
Stats
:
stats
,
}
return
ret
}
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