Skip to content

Commit

Permalink
Merge branch 'main' into fix_semconv_2419
Browse files Browse the repository at this point in the history
  • Loading branch information
marcalff authored Dec 5, 2023
2 parents f441b1f + a86f8f0 commit 6e457ba
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
1 change: 1 addition & 0 deletions api/include/opentelemetry/trace/propagation/detail/hex.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#pragma once

#include <algorithm>
#include <cstdint>
#include <cstring>

#include "opentelemetry/nostd/string_view.h"
Expand Down
6 changes: 4 additions & 2 deletions api/include/opentelemetry/trace/trace_state.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "opentelemetry/nostd/unique_ptr.h"
#include "opentelemetry/version.h"

#if defined(OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
# include <regex>
#endif

Expand Down Expand Up @@ -246,6 +246,7 @@ class OPENTELEMETRY_EXPORT TraceState
return str.substr(left, right - left + 1);
}

#if OPENTELEMETRY_HAVE_WORKING_REGEX
static bool IsValidKeyRegEx(nostd::string_view key)
{
static std::regex reg_key("^[a-z0-9][a-z0-9*_\\-/]{0,255}$");
Expand All @@ -267,7 +268,7 @@ class OPENTELEMETRY_EXPORT TraceState
// Need to benchmark without regex, as a string object is created here.
return std::regex_match(std::string(value.data(), value.size()), reg_value);
}

#else
static bool IsValidKeyNonRegEx(nostd::string_view key)
{
if (key.empty() || key.size() > kKeyMaxSize || !IsLowerCaseAlphaOrDigit(key[0]))
Expand Down Expand Up @@ -307,6 +308,7 @@ class OPENTELEMETRY_EXPORT TraceState
}
return true;
}
#endif

static bool IsLowerCaseAlphaOrDigit(char c) { return isdigit(c) || islower(c); }

Expand Down
2 changes: 1 addition & 1 deletion sdk/include/opentelemetry/sdk/metrics/view/predicate.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "opentelemetry/nostd/string_view.h"
#include "opentelemetry/sdk/common/global_log_handler.h"

#if defined(OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
# include <regex>
#endif

Expand Down
2 changes: 1 addition & 1 deletion sdk/src/metrics/instrument_metadata_validator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <algorithm>
#include <iostream>

#if defined(OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
# include <regex>
#endif

Expand Down
6 changes: 3 additions & 3 deletions sdk/test/metrics/histogram_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

#include <gtest/gtest.h>

#if defined(OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
# include <regex>
#endif

Expand Down Expand Up @@ -73,7 +73,7 @@ TEST(Histogram, Double)
actual.counts_);
}

#if (OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
// FIXME - View Preficate search is only supported through regex
TEST(Histogram, DoubleCustomBuckets)
{
Expand Down Expand Up @@ -188,7 +188,7 @@ TEST(Histogram, UInt64)
actual.counts_);
}

#if (OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
// FIXME - View Preficate search is only supported through regex
TEST(Histogram, UInt64CustomBuckets)
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/test/metrics/view_registry_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include <gtest/gtest.h>

#if defined(OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
# include <regex>
#endif

Expand Down

0 comments on commit 6e457ba

Please sign in to comment.