summaryrefslogtreecommitdiffstats
path: root/src/jaegertracing/opentelemetry-cpp/sdk/test/common/attributemap_hash_benchmark.cc
blob: 811ecb23dd065506f1e305b1182fa0eb60209fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

#include <benchmark/benchmark.h>
#include "opentelemetry/sdk/common/attributemap_hash.h"

using namespace opentelemetry::sdk::common;
namespace
{
void BM_AttributeMapHash(benchmark::State &state)
{
  OrderedAttributeMap map1 = {{"k1", "v1"}, {"k2", "v2"}, {"k3", "v3"},  {"k4", "v4"},
                              {"k5", true}, {"k6", 12},   {"k7", 12.209}};
  while (state.KeepRunning())
  {
    benchmark::DoNotOptimize(GetHashForAttributeMap(map1));
  }
}
BENCHMARK(BM_AttributeMapHash);

}  // namespace
BENCHMARK_MAIN();