mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
27 lines
487 B
Go
27 lines
487 B
Go
package test
|
|
|
|
import "testing"
|
|
|
|
func BenchmarkMapConversion(b *testing.B) {
|
|
type key string
|
|
type val string
|
|
|
|
m := map[key]val{
|
|
"job": "node",
|
|
"instance": "123.123.1.211:9090",
|
|
"path": "/api/v1/namespaces/<namespace>/deployments/<name>",
|
|
"method": "GET",
|
|
"namespace": "system",
|
|
"status": "500",
|
|
}
|
|
|
|
var sm map[string]string
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
sm = make(map[string]string, len(m))
|
|
for k, v := range m {
|
|
sm[string(k)] = string(v)
|
|
}
|
|
}
|
|
}
|