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
8c335ea4
Commit
8c335ea4
authored
Feb 09, 2017
by
Aleksandra Malinowska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add monitoring test
parent
154e8be5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
115 additions
and
8 deletions
+115
-8
BUILD
test/e2e/BUILD
+1
-0
stackdriver_monitoring.go
test/e2e/stackdriver_monitoring.go
+114
-8
No files found.
test/e2e/BUILD
View file @
8c335ea4
...
...
@@ -173,6 +173,7 @@ go_library(
"//vendor/github.com/onsi/gomega:go_default_library",
"//vendor/golang.org/x/crypto/ssh:go_default_library",
"//vendor/golang.org/x/net/websocket:go_default_library",
"//vendor/golang.org/x/oauth2/google:go_default_library",
"//vendor/google.golang.org/api/monitoring/v3:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/api/errors:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/api/resource:go_default_library",
...
...
test/e2e/stackdriver_monitoring.go
View file @
8c335ea4
...
...
@@ -17,27 +17,133 @@ limitations under the License.
package
e2e
import
(
"k8s.io/kubernetes/test/e2e/framework"
"context"
"fmt"
"math"
"time"
"golang.org/x/oauth2/google"
.
"github.com/onsi/ginkgo"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/kubernetes/test/e2e/common"
"k8s.io/kubernetes/test/e2e/framework"
gcm
"google.golang.org/api/monitoring/v3"
)
var
_
=
&
gcm
.
CollectdValue
{}
var
(
// Stackdriver container metrics, as descirbed here:
// https://cloud.google.com/monitoring/api/metrics#gcp-container
stackdriverMetrics
=
[]
string
{
"uptime"
,
"memory/bytes_total"
,
"memory/bytes_used"
,
"cpu/reserved_cores"
,
"cpu/usage_time"
,
"memory/page_fault_count"
,
"disk/bytes_used"
,
"disk/bytes_total"
,
"cpu/utilization"
,
}
var
_
=
framework
.
KubeDescribe
(
"Stackdriver metrics"
,
func
()
{
_
=
framework
.
NewDefaultFramework
(
"monitoring"
)
pollFrequency
=
time
.
Second
*
5
pollTimeout
=
time
.
Minute
*
7
rcName
=
"resource-consumer"
replicas
=
1
cpuUsed
=
100
cpuLimit
int64
=
200
memoryUsed
=
64
memoryLimit
int64
=
200
tolerance
=
0.25
)
var
_
=
framework
.
KubeDescribe
(
"Stackdriver Monitoring"
,
func
()
{
BeforeEach
(
func
()
{
framework
.
SkipUnlessProviderIs
(
"gke"
)
})
It
(
"should publish metrics to Stackdriver [Feature:Stackdriver][Flaky]"
,
func
()
{
framework
.
Logf
(
"Start creating Stackdriver monitoring test"
)
testStackdriverMonitoring
(
f
.
ClientSet
)
f
:=
framework
.
NewDefaultFramework
(
"stackdriver-monitoring"
)
It
(
"should have cluster metrics [Feature:StackdriverMonitoring]"
,
func
()
{
projectId
:=
framework
.
TestContext
.
CloudConfig
.
ProjectID
ctx
:=
context
.
Background
()
client
,
err
:=
google
.
DefaultClient
(
ctx
,
gcm
.
CloudPlatformScope
)
gcmService
,
err
:=
gcm
.
New
(
client
)
framework
.
ExpectNoError
(
err
)
rc
:=
common
.
NewDynamicResourceConsumer
(
rcName
,
common
.
KindDeployment
,
replicas
,
cpuUsed
,
memoryUsed
,
0
,
cpuLimit
,
memoryLimit
,
f
)
defer
rc
.
CleanUp
()
rc
.
WaitForReplicas
(
replicas
)
pollingFunction
:=
checkForMetrics
(
projectId
,
gcmService
,
time
.
Now
())
framework
.
ExpectNoError
(
wait
.
Poll
(
pollFrequency
,
pollTimeout
,
pollingFunction
))
})
})
func
testStackdriverMonitoring
()
{
func
checkForMetrics
(
projectId
string
,
gcmService
*
gcm
.
Service
,
start
time
.
Time
)
func
()
(
bool
,
error
)
{
return
func
()
(
bool
,
error
)
{
// TODO: list which metrics are missing in case of failure
counter
:=
0
correctUtilization
:=
false
for
_
,
metric
:=
range
stackdriverMetrics
{
// TODO: check only for metrics from this cluster
ts
,
err
:=
fetchTimeSeries
(
projectId
,
gcmService
,
metric
,
start
,
time
.
Now
())
framework
.
ExpectNoError
(
err
)
if
len
(
ts
)
>
0
{
counter
=
counter
+
1
}
var
sum
float64
=
0
switch
metric
{
case
"cpu/utilization"
:
for
_
,
t
:=
range
ts
{
max
:=
t
.
Points
[
0
]
maxEnd
,
_
:=
time
.
Parse
(
time
.
RFC3339
,
max
.
Interval
.
EndTime
)
for
_
,
p
:=
range
t
.
Points
{
pEnd
,
_
:=
time
.
Parse
(
time
.
RFC3339
,
p
.
Interval
.
EndTime
)
if
pEnd
.
After
(
maxEnd
)
{
max
=
p
maxEnd
,
_
=
time
.
Parse
(
time
.
RFC3339
,
max
.
Interval
.
EndTime
)
}
}
sum
=
sum
+
*
max
.
Value
.
DoubleValue
}
if
math
.
Abs
(
sum
*
float64
(
cpuLimit
)
-
float64
(
cpuUsed
))
>
tolerance
*
float64
(
cpuUsed
)
{
return
false
,
nil
}
else
{
correctUtilization
=
true
}
}
}
if
counter
<
9
||
!
correctUtilization
{
return
false
,
nil
}
return
true
,
nil
}
}
func
createMetricFilter
(
metric
string
,
container_name
string
)
string
{
return
fmt
.
Sprintf
(
`metric.type="container.googleapis.com/container/%s" AND
resource.label.container_name="%s"`
,
metric
,
container_name
)
}
func
fetchTimeSeries
(
projectId
string
,
gcmService
*
gcm
.
Service
,
metric
string
,
start
time
.
Time
,
end
time
.
Time
)
([]
*
gcm
.
TimeSeries
,
error
)
{
response
,
err
:=
gcmService
.
Projects
.
TimeSeries
.
List
(
fullProjectName
(
projectId
))
.
Filter
(
createMetricFilter
(
metric
,
rcName
))
.
IntervalStartTime
(
start
.
Format
(
time
.
RFC3339
))
.
IntervalEndTime
(
end
.
Format
(
time
.
RFC3339
))
.
Do
()
if
err
!=
nil
{
return
nil
,
err
}
return
response
.
TimeSeries
,
nil
}
func
fullProjectName
(
name
string
)
string
{
return
fmt
.
Sprintf
(
"projects/%s"
,
name
)
}
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