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
418c7292
Commit
418c7292
authored
Dec 16, 2015
by
k8s-merge-robot
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #18486 from timstclair/kubelet_stats
Auto commit by PR queue bot
parents
bae050ff
2e6ef04a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
kubelet_stats.go
test/e2e/kubelet_stats.go
+7
-2
No files found.
test/e2e/kubelet_stats.go
View file @
418c7292
...
@@ -607,8 +607,13 @@ func (r *resourceCollector) collectStats(oldStats map[string]*cadvisorapi.Contai
...
@@ -607,8 +607,13 @@ func (r *resourceCollector) collectStats(oldStats map[string]*cadvisorapi.Contai
Logf
(
"Missing info/stats for container %q on node %q"
,
name
,
r
.
node
)
Logf
(
"Missing info/stats for container %q on node %q"
,
name
,
r
.
node
)
return
return
}
}
if
_
,
ok
:=
oldStats
[
name
];
ok
{
if
oldInfo
,
ok
:=
oldStats
[
name
];
ok
{
r
.
buffers
[
name
]
=
append
(
r
.
buffers
[
name
],
computeContainerResourceUsage
(
name
,
oldStats
[
name
],
info
.
Stats
[
0
]))
newInfo
:=
info
.
Stats
[
0
]
if
oldInfo
.
Timestamp
.
Equal
(
newInfo
.
Timestamp
)
{
// No change -> skip this stat.
continue
}
r
.
buffers
[
name
]
=
append
(
r
.
buffers
[
name
],
computeContainerResourceUsage
(
name
,
oldInfo
,
newInfo
))
}
}
oldStats
[
name
]
=
info
.
Stats
[
0
]
oldStats
[
name
]
=
info
.
Stats
[
0
]
}
}
...
...
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