1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
|
/*
Copyright 2015-2017 Red Hat, Inc. and/or its affiliates
and other contributors.
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 metrics
import (
"crypto/rand"
"crypto/tls"
"encoding/base64"
"encoding/json"
"fmt"
"math"
"net/http"
"net/http/httptest"
"reflect"
"sync"
"testing"
"time"
assert "github.com/stretchr/testify/require"
)
func integrationClient() (*Client, error) {
t, err := randomString()
if err != nil {
return nil, err
}
p := Parameters{Tenant: t, Url: "http://localhost:8080", AdminToken: "secret"}
// p := Parameters{Tenant: t, Host: "localhost:8180"}
// p := Parameters{Tenant: t, Url: "http://192.168.1.105:8080"}
// p := Parameters{Tenant: t, Host: "209.132.178.218:18080"}
return NewHawkularClient(p)
}
func randomString() (string, error) {
b := make([]byte, 16)
if _, err := rand.Read(b); err != nil {
return "", err
}
return fmt.Sprintf("%X", b[:]), nil
}
func TestTenant(t *testing.T) {
c, err := integrationClient()
assert.NoError(t, err)
// Create simple Tenant
id, _ := randomString()
tenant := TenantDefinition{ID: id}
created, err := c.CreateTenant(tenant)
assert.NoError(t, err)
assert.True(t, created)
// Create tenant with retention settings
idr, _ := randomString()
// var typ MetricType
typ := Gauge
retentions := make(map[MetricType]int)
retentions[typ] = 5
tenant = TenantDefinition{ID: idr, Retentions: retentions}
created, err = c.CreateTenant(tenant)
assert.NoError(t, err)
assert.True(t, created)
// Fetch Tenants
tenants, err := c.Tenants()
assert.NoError(t, err)
assert.True(t, len(tenants) > 0)
var tenantFinder = func(tenantId string, tenantList []*TenantDefinition) *TenantDefinition {
for _, v := range tenantList {
if v.ID == tenantId {
return v
}
}
return nil
}
ft := tenantFinder(id, tenants)
assert.NotNil(t, ft)
assert.Equal(t, id, ft.ID)
ft = tenantFinder(idr, tenants)
assert.NotNil(t, ft)
assert.Equal(t, idr, ft.ID)
assert.Equal(t, ft.Retentions[typ], 5)
}
func TestTenantModifier(t *testing.T) {
c, err := integrationClient()
assert.Nil(t, err)
ot, _ := randomString()
// Create for another tenant
id := "test.metric.create.numeric.tenant.1"
md := MetricDefinition{ID: id, Type: Gauge}
ok, err := c.Create(md, Tenant(ot))
assert.Nil(t, err)
assert.True(t, ok, "MetricDefinition should have been created")
// Try to fetch from default tenant - should fail
mds, err := c.Definitions(Filters(TypeFilter(Gauge)))
assert.Nil(t, err)
assert.Nil(t, mds)
// Try to fetch from the given tenant - should succeed
mds, err = c.Definitions(Filters(TypeFilter(Gauge)), Tenant(ot))
assert.Nil(t, err)
assert.Equal(t, 1, len(mds))
}
func TestCreate(t *testing.T) {
c, err := integrationClient()
assert.Nil(t, err)
id := "test.metric.create.numeric.1"
md := MetricDefinition{ID: id, Type: Gauge}
ok, err := c.Create(md)
assert.Nil(t, err)
assert.True(t, ok, "MetricDefinition should have been created")
// Try to recreate the same..
ok, err = c.Create(md)
assert.False(t, ok, "Should have received false when recreating them same metric")
assert.Nil(t, err)
// Use tags and dataRetention
tags := make(map[string]string)
tags["units"] = "bytes"
tags["env"] = "unittest"
mdTags := MetricDefinition{ID: "test.metric.create.numeric.2", Tags: tags, Type: Gauge}
ok, err = c.Create(mdTags)
assert.True(t, ok, "MetricDefinition should have been created")
assert.Nil(t, err)
mdReten := MetricDefinition{ID: "test/metric/create/availability/1", RetentionTime: 12, Type: Availability}
ok, err = c.Create(mdReten)
assert.Nil(t, err)
assert.True(t, ok, "MetricDefinition should have been created")
// Test one with whitespace
mdSpace := MetricDefinition{ID: "test metric whitespace 1", Type: Gauge}
ok, err = c.Create(mdSpace)
assert.Nil(t, err)
assert.True(t, ok, "MetricDefinition should have been created")
// Fetch all the previously created metrics and test equalities..
mdq, err := c.Definitions(Filters(TypeFilter(Gauge)))
assert.Nil(t, err)
assert.Equal(t, 3, len(mdq), "Size of the returned gauge metrics does not match 3")
mdm := make(map[string]MetricDefinition)
for _, v := range mdq {
mdm[v.ID] = *v
}
assert.Equal(t, md.ID, mdm[id].ID)
assert.Equal(t, mdSpace.ID, mdm[mdSpace.ID].ID)
assert.True(t, reflect.DeepEqual(tags, mdm["test.metric.create.numeric.2"].Tags))
mda, err := c.Definitions(Filters(TypeFilter(Availability)))
assert.Nil(t, err)
assert.Equal(t, 1, len(mda))
assert.Equal(t, "test/metric/create/availability/1", mda[0].ID)
assert.Equal(t, 12, mda[0].RetentionTime)
if mda[0].Type != Availability {
assert.FailNow(t, "Type did not match Availability", mda[0].Type)
}
}
func TestTagsModification(t *testing.T) {
c, err := integrationClient()
assert.Nil(t, err)
id := "test/tags/modify/1"
// Create metric without tags
md := MetricDefinition{ID: id, Type: Gauge}
ok, err := c.Create(md)
assert.Nil(t, err)
assert.True(t, ok, "MetricDefinition should have been created")
// Add tags
tags := make(map[string]string)
tags["ab"] = "ac"
tags["host value"] = "test whitespace"
tags["plus+is+valid+too"] = "plus+value"
err = c.UpdateTags(Gauge, id, tags)
assert.Nil(t, err)
// Fetch metric tags - check for equality
mdTags, err := c.Tags(Gauge, id)
assert.Nil(t, err)
assert.True(t, reflect.DeepEqual(tags, mdTags), "Tags did not match the updated ones")
tagNamesList := make([]string, 0, len(tags))
for k, _ := range tags {
tagNamesList = append(tagNamesList, k)
}
// Delete some metric tags
err = c.DeleteTags(Gauge, id, tagNamesList)
assert.Nil(t, err)
// Fetch metric - check that tags were deleted
mdTags, err = c.Tags(Gauge, id)
assert.Nil(t, err)
assert.False(t, len(mdTags) > 0, "Received deleted tags")
}
func checkDatapoints(t *testing.T, c *Client, orig *MetricHeader) {
metric, err := c.ReadRaw(orig.Type, orig.ID)
assert.NoError(t, err)
assert.Equal(t, len(orig.Data), len(metric), "Amount of datapoints does not match expected value")
for i, d := range metric {
assert.True(t, orig.Data[i].Timestamp.Equal(d.Timestamp))
switch orig.Type {
case Counter:
origV, _ := orig.Data[i].Value.(int64)
recvV, _ := d.Value.(int64)
assert.Equal(t, int64(origV), int64(recvV))
case Gauge:
origV, _ := ConvertToFloat64(orig.Data[i].Value)
recvV, _ := ConvertToFloat64(d.Value)
assert.Equal(t, origV, recvV)
case String:
origV, _ := orig.Data[i].Value.(string)
recvV, _ := d.Value.(string)
assert.Equal(t, string(origV), string(recvV))
}
assert.True(t, d.Timestamp.Unix() > 0)
}
}
func TestAddMixedMulti(t *testing.T) {
// Modify to send both Availability as well as Gauge metrics at the same time
c, err := integrationClient()
assert.NoError(t, err)
startTime := time.Now().Truncate(time.Millisecond)
mone := Datapoint{Value: 2, Timestamp: startTime}
hOne := MetricHeader{
ID: "test.multi.numeric.1",
Data: []Datapoint{mone},
Type: Counter,
}
mTwoOne := Datapoint{Value: 1.45, Timestamp: startTime}
mTwoTwoT := startTime.Add(-1 * time.Second)
mTwoTwo := Datapoint{Value: float64(4.56), Timestamp: mTwoTwoT}
hTwo := MetricHeader{
ID: "test.multi.numeric.2",
Data: []Datapoint{mTwoOne, mTwoTwo},
Type: Gauge,
}
mThree := Datapoint{Value: "stringType_test", Timestamp: mTwoTwoT}
hThree := MetricHeader{
ID: "test.multi.string.3",
Data: []Datapoint{mThree},
Type: String,
}
h := []MetricHeader{hOne, hTwo, hThree}
err = c.Write(h)
assert.NoError(t, err)
checkDatapoints(t, c, &hOne)
checkDatapoints(t, c, &hTwo)
checkDatapoints(t, c, &hThree)
}
func TestCheckErrors(t *testing.T) {
c, err := integrationClient()
assert.Nil(t, err)
mH := MetricHeader{
ID: "test.number.as.string",
Data: []Datapoint{Datapoint{Value: "notFloat"}},
Type: Gauge,
}
err = c.Write([]MetricHeader{mH})
assert.NotNil(t, err, "Invalid non-float value should not be accepted")
_, err = c.ReadRaw(mH.Type, mH.ID)
assert.Nil(t, err, "Querying empty metric should not generate an error")
}
func TestTokenAuthenticationWithSSL(t *testing.T) {
s := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("X-Authorization", r.Header.Get("Authorization"))
}))
defer s.Close()
tenant, err := randomString()
assert.NoError(t, err)
tC := &tls.Config{InsecureSkipVerify: true}
p := Parameters{
Tenant: tenant,
Url: s.URL,
Token: "62590bf9827213afadea8b5077a5bdc0",
TLSConfig: tC,
}
c, err := NewHawkularClient(p)
assert.NoError(t, err)
r, err := c.Send(c.URL("GET"))
assert.NoError(t, err)
assert.Equal(t, fmt.Sprintf("Bearer %s", p.Token), r.Header.Get("X-Authorization"))
}
func TestBasicAuthenticationWithSSL(t *testing.T) {
s := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("X-Authorization", r.Header.Get("Authorization"))
}))
defer s.Close()
tC := &tls.Config{InsecureSkipVerify: true}
p := Parameters{
Tenant: "some tenant",
Url: s.URL,
Username: "user",
Password: "pass",
TLSConfig: tC,
}
c, err := NewHawkularClient(p)
assert.NoError(t, err)
r, err := c.Send(c.URL("GET"))
assert.NoError(t, err)
assert.Equal(t, fmt.Sprintf("Basic %s", base64.StdEncoding.EncodeToString([]byte(fmt.Sprintf("%v:%v", p.Username, p.Password)))), r.Header.Get("X-Authorization"))
}
func TestInvalidBasicAuthentication(t *testing.T) {
tC := &tls.Config{InsecureSkipVerify: true}
p := Parameters{
Tenant: "some tenant",
Url: "http://localhost:8080",
Username: "user",
Password: "pass",
Token: "token",
TLSConfig: tC,
}
_, err := NewHawkularClient(p)
assert.Error(t, err, "Should not be able to specify both credentials and token")
p = Parameters{
Tenant: "some tenant",
Url: "http://localhost:8080",
Username: "user",
TLSConfig: tC,
}
_, err = NewHawkularClient(p)
assert.Error(t, err, "Should not be able to specify just username")
p = Parameters{
Tenant: "some tenant",
Url: "http://localhost:8080",
Password: "pass",
TLSConfig: tC,
}
_, err = NewHawkularClient(p)
assert.Error(t, err, "Should not be able to specify just password")
}
func TestBuckets(t *testing.T) {
c, err := integrationClient()
assert.NoError(t, err)
tags := make(map[string]string)
tags["units"] = "bytes"
tags["env"] = "unittest"
// Needs https://issues.jboss.org/browse/HWKMETRICS-530 to be fixed first
// tags["whitespace plus+empty"] = "space+causes problems"
mdTags := MetricDefinition{ID: "test.buckets.1", Tags: tags, Type: Gauge}
ok, err := c.Create(mdTags)
assert.NoError(t, err)
assert.True(t, ok)
hone := MetricHeader{
ID: "test.buckets.1",
// Data: []Datapoint{mone},
Type: Gauge,
}
data := make([]Datapoint, 0, 10)
ts := time.Now()
for i := 0; i < 10; i++ {
ts = ts.Add(-1 * time.Second)
val := 1.45 * float64(i)
data = append(data, Datapoint{
Value: val,
Timestamp: ts,
})
}
hone.Data = data
err = c.Write([]MetricHeader{hone})
assert.NoError(t, err)
bp, err := c.ReadBuckets(Gauge, Filters(TagsFilter(tags), BucketsFilter(1), PercentilesFilter([]float64{90.0, 99.0})))
assert.NoError(t, err)
assert.NotNil(t, bp)
assert.Equal(t, 1, len(bp), "Only one bucket was requested")
assert.Equal(t, uint64(10), bp[0].Samples, "Sampling should be based on 10 values")
assert.Equal(t, 2, len(bp[0].Percentiles), "Two percentiles were requested")
assert.Equal(t, 90.0, bp[0].Percentiles[0].Quantile)
assert.Equal(t, 99.0, bp[0].Percentiles[1].Quantile)
assert.True(t, bp[0].Start.Unix() > 0, "Start time should be higher than 0")
assert.True(t, bp[0].End.Unix() > 0, "End time should be higher than 0")
bp, err = c.ReadBuckets(Gauge, Filters(TagsFilter(tags), BucketsDurationFilter(time.Second), StartTimeFilter(ts)))
assert.NoError(t, err)
assert.NotNil(t, bp)
assert.Equal(t, 11, len(bp), "One second buckets were requested for the whole time")
}
func TestTagQueries(t *testing.T) {
c, err := integrationClient()
assert.NoError(t, err)
tags := make(map[string]string)
// Create definitions
for i := 1; i < 10; i++ {
hostname := fmt.Sprintf("host%d", i)
metricID := fmt.Sprintf("test.tags.host.%d", i)
tags["hostname"] = hostname // No need to worry about using the same map
md := MetricDefinition{ID: metricID, Tags: tags, Type: Gauge}
ok, err := c.Create(md)
assert.NoError(t, err)
assert.True(t, ok)
}
tags["hostname"] = "host[123]"
// Now query
mds, err := c.Definitions(Filters(TagsFilter(tags)))
assert.NoError(t, err)
assert.Equal(t, 3, len(mds))
// Now query the available hostnames
values, err := c.TagValues(tags)
assert.NoError(t, err)
assert.Equal(t, 1, len(values))
assert.Equal(t, 3, len(values["hostname"]))
}
func TestEscapingDatapoints(t *testing.T) {
c, err := integrationClient()
assert.NoError(t, err)
startTime := time.Now().Truncate(time.Millisecond)
mone := Datapoint{Value: 2, Timestamp: startTime}
hOne := MetricHeader{
ID: "test whitespace counter 1",
Data: []Datapoint{mone},
Type: Counter,
}
hTwo := MetricHeader{
ID: "test+plus+counter+1",
Data: []Datapoint{mone},
Type: Counter,
}
err = c.Write([]MetricHeader{hOne, hTwo})
assert.NoError(t, err)
checkDatapoints(t, c, &hOne)
checkDatapoints(t, c, &hTwo)
}
func TestQueryEscape(t *testing.T) {
plusses := "1+2+3"
whitespace := "test whitespace JEE"
slashes := "test/my/mind"
combination := "test/with whitespace+plusses"
escapedPlusses := URLEscape(plusses)
escapedWhitespace := URLEscape(whitespace)
escapedSlashes := URLEscape(slashes)
escapedCombination := URLEscape(combination)
assert.Equal(t, escapedPlusses, "1%2B2%2B3")
assert.Equal(t, escapedWhitespace, "test%20whitespace%20JEE")
assert.Equal(t, escapedSlashes, "test%2Fmy%2Fmind")
assert.Equal(t, escapedCombination, "test%2Fwith%20whitespace%2Bplusses")
}
func TestDatapointMarshal(t *testing.T) {
d := Datapoint{
Value: float64(1.2),
Timestamp: time.Now(),
Tags: map[string]string{
"a": "b",
},
}
b, err := json.Marshal(d)
assert.NoError(t, err)
ud := &Datapoint{}
err = json.Unmarshal(b, ud)
assert.NoError(t, err)
assert.Equal(t, 1, len(ud.Tags))
assert.Equal(t, d.Value, ud.Value)
assert.Equal(t, d.Timestamp.Unix(), ud.Timestamp.Unix())
}
func getMetrics(prefix int) []MetricHeader {
points := 10
metrics := 100000
ts := time.Now()
m := make([]MetricHeader, 0, metrics)
for j := 0; j < (points * metrics); j += points {
id := fmt.Sprintf("bench.metric.%d.%d", prefix, j)
data := make([]Datapoint, 0, points)
for k := 0; k < points; k++ {
ts = ts.Add(1 * time.Millisecond)
data = append(data, Datapoint{
Timestamp: ts,
Value: float64(k),
})
}
m = append(m, MetricHeader{
ID: id,
Type: Gauge,
Data: data,
})
}
return m
}
func toBatches(m []MetricHeader, batchSize int) chan []MetricHeader {
if batchSize == 0 {
c := make(chan []MetricHeader, 1)
c <- m
return c
}
size := int(math.Ceil(float64(len(m)) / float64(batchSize)))
c := make(chan []MetricHeader, size)
for i := 0; i < len(m); i += batchSize {
n := i + batchSize
if len(m) < n {
n = len(m)
}
part := m[i:n]
c <- part
}
return c
}
func BenchmarkHawkular(b *testing.B) {
for i := 0; i < b.N; i++ {
m := getMetrics(i)
t, _ := randomString()
p := Parameters{Tenant: t, Url: "http://localhost:8080", Concurrency: 32}
c, _ := NewHawkularClient(p)
b.ResetTimer()
wg := &sync.WaitGroup{}
parts := toBatches(m, 100)
close(parts)
for p := range parts {
wg.Add(1)
go func(mh []MetricHeader) {
c.Write(mh)
wg.Done()
}(p)
}
wg.Wait()
}
}
|