-
Notifications
You must be signed in to change notification settings - Fork 440
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into wip-spinlock-improvements
- Loading branch information
Showing
21 changed files
with
574 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
#!/usr/bin/env bash | ||
|
||
# This script is supposed to be executed to recreate version.cc. It can be executed as: | ||
# git pre-commit hook | ||
# git per-merge-commit hook | ||
# manually as part of release process ( refer RELEASING.md ) | ||
|
||
set -eo pipefail | ||
|
||
if [[ ! -w "$(pwd)/sdk/src/version/version.cc" && ! -w "$(pwd)/api/include/opentelemetry/version.h" ]]; then | ||
echo "Error: Version file(s) are not writable. Check permissions and try again." | ||
exit 1 | ||
fi | ||
|
||
# format: "v<MAJOR>.<MINOR>.<PATCH>-<PRERELEASE>+<BUILDMETADATA>-<NUMBER_OF_NEW_COMMITS>-g<LAST_COMMIT_HASH>"" | ||
semver_regex="^v(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)(\\-([0-9A-Za-z-]+(\\.[0-9A-Za-z-]+)*))?(\\+[0-9A-Za-z-]+(\\.[0-9A-Za-z-]+)*)?-([0-9]+)-g([0-9|a-z]+)$" | ||
git_tag=$(git describe --tags --long 2>/dev/null) || true | ||
if [[ ! -z $git_tag ]] && [[ $git_tag =~ $semver_regex ]]; then | ||
major="${BASH_REMATCH[1]}" | ||
minor="${BASH_REMATCH[2]}" | ||
patch="${BASH_REMATCH[3]}" | ||
pre_release="${BASH_REMATCH[5]}" #optional | ||
build_metadata="${BASH_REMATCH[7]}" #optional | ||
count_new_commits="${BASH_REMATCH[9]}" | ||
latest_commit_hash="${BASH_REMATCH[10]}" | ||
if [[ -z ${major} ]] || [[ -z ${minor} ]] || [[ -z ${patch} ]] || [[ -z ${count_new_commits} ]] || [[ -z ${latest_commit_hash} ]]; then | ||
echo "Error: Incorrect tag format recevived. Exiting.." | ||
exit 1 | ||
fi | ||
else | ||
major=0 && minor=0 && patch=0 && pre_release="" && build_metadata="" && count_new_commits=0 | ||
latest_commit_hash="$(git rev-parse --short HEAD)" | ||
fi | ||
: ${pre_release:="NONE"} # use default string if not defined | ||
: ${build_metadata:="NONE"} # use default string if not defined | ||
latest_commit_hash=$(git rev-parse ${latest_commit_hash}) # get full hash from short | ||
|
||
if [[ -z ${latest_commit_hash} ]]; then | ||
echo "Error: Incorrect short hash received. Exiting.." | ||
exit 1 | ||
fi | ||
|
||
branch="$(git rev-parse --abbrev-ref HEAD)" | ||
short_version="${major}.${minor}.${patch}" | ||
full_version="${short_version}-${pre_release}-${build_metadata}-${count_new_commits}-${branch}-${latest_commit_hash}" | ||
|
||
#update api version.h | ||
sed -i "/^\#define OPENTELEMETRY_VERSION/c\#define OPENTELEMETRY_VERSION \"${short_version}\"" "$(pwd)/api/include/opentelemetry/version.h" | ||
#update sdk version.cc | ||
cat > "$(pwd)/sdk/src/version/version.cc" <<END | ||
// Please DONOT touch this file. | ||
// Any changes done here would be overwritten by pre-commit git hook | ||
#include "opentelemetry/sdk/version/version.h" | ||
OPENTELEMETRY_BEGIN_NAMESPACE | ||
namespace sdk | ||
{ | ||
namespace version | ||
{ | ||
const int MAJOR_VERSION = ${major}; | ||
const int MINOR_VERSION = ${minor}; | ||
const int PATCH_VERSION = ${patch}; | ||
const char* PRE_RELEASE = "${pre_release}"; | ||
const char* BUILD_METADATA = "${build_metadata}"; | ||
const int COUNT_NEW_COMMITS = ${count_new_commits}; | ||
const char* BRANCH = "${branch}"; | ||
const char* COMMIT_HASH = "${latest_commit_hash}"; | ||
const char* SHORT_VERSION = "${short_version}"; | ||
const char* FULL_VERSION = "${full_version}"; | ||
const char* BUILD_DATE = "$(date -u)"; | ||
} | ||
} | ||
OPENTELEMETRY_END_NAMESPACE | ||
END | ||
git add "$(pwd)/sdk/src/version/version.cc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./pre-commit |
0
pre_release.sh → buildscripts/pre_release.sh
100644 → 100755
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,10 @@ | |
"resource": [ | ||
{ | ||
"files": [ | ||
|
||
"api/**.h", | ||
"api/**.cc", | ||
"sdk/**.h", | ||
"sdk/**.cc" | ||
] | ||
} | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* | ||
* 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. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <memory> | ||
#include <vector> | ||
#include "opentelemetry/logs/log_record.h" | ||
#include "opentelemetry/nostd/span.h" | ||
#include "opentelemetry/sdk/logs/processor.h" | ||
|
||
OPENTELEMETRY_BEGIN_NAMESPACE | ||
namespace sdk | ||
{ | ||
namespace logs | ||
{ | ||
/** | ||
* ExportResult is returned as result of exporting a batch of Log Records. | ||
*/ | ||
enum class ExportResult | ||
{ | ||
// The batch was exported successfully | ||
kSuccess = 0, | ||
// The batch was exported unsuccessfully and was dropped, but can not be retried | ||
kFailure | ||
}; | ||
|
||
/** | ||
* LogExporter defines the interface that log exporters must implement. | ||
*/ | ||
class LogExporter | ||
{ | ||
public: | ||
virtual ~LogExporter() = default; | ||
|
||
/** | ||
* Exports the batch of log records to their export destination. | ||
* This method must not be called concurrently for the same exporter instance. | ||
* The exporter may attempt to retry sending the batch, but should drop | ||
* and return kFailure after a certain timeout. | ||
* @param records a span of unique pointers to log records | ||
* @returns an ExportResult code (whether export was success or failure) | ||
*/ | ||
virtual ExportResult Export( | ||
const nostd::span<std::unique_ptr<opentelemetry::logs::LogRecord>> &records) noexcept = 0; | ||
|
||
/** | ||
* Marks the exporter as ShutDown and cleans up any resources as required. | ||
* Shutdown should be called only once for each Exporter instance. | ||
* @param timeout minimum amount of microseconds to wait for shutdown before giving up and | ||
* returning failure. | ||
* @return true if the exporter shutdown succeeded, false otherwise | ||
*/ | ||
virtual bool Shutdown( | ||
std::chrono::microseconds timeout = std::chrono::microseconds::max()) noexcept = 0; | ||
}; | ||
} // namespace logs | ||
} // namespace sdk | ||
OPENTELEMETRY_END_NAMESPACE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* | ||
* 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. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <atomic> | ||
#include <mutex> | ||
|
||
#include "opentelemetry/common/spin_lock_mutex.h" | ||
#include "opentelemetry/sdk/logs/exporter.h" | ||
#include "opentelemetry/sdk/logs/processor.h" | ||
|
||
OPENTELEMETRY_BEGIN_NAMESPACE | ||
namespace sdk | ||
{ | ||
namespace logs | ||
{ | ||
/** | ||
* The simple log processor passes all log records | ||
* in a batch of 1 to the configured | ||
* LogExporter. | ||
* | ||
* All calls to the configured LogExporter are synchronized using a | ||
* spin-lock on an atomic_flag. | ||
*/ | ||
class SimpleLogProcessor : public LogProcessor | ||
{ | ||
|
||
public: | ||
explicit SimpleLogProcessor(std::unique_ptr<LogExporter> &&exporter); | ||
virtual ~SimpleLogProcessor() = default; | ||
|
||
void OnReceive(std::unique_ptr<opentelemetry::logs::LogRecord> &&record) noexcept override; | ||
|
||
bool ForceFlush( | ||
std::chrono::microseconds timeout = std::chrono::microseconds::max()) noexcept override; | ||
|
||
bool Shutdown( | ||
std::chrono::microseconds timeout = std::chrono::microseconds::max()) noexcept override; | ||
|
||
private: | ||
// The configured exporter | ||
std::unique_ptr<LogExporter> exporter_; | ||
// The lock used to ensure the exporter is not called concurrently | ||
opentelemetry::common::SpinLockMutex lock_; | ||
// The atomic boolean flag to ensure the ShutDown() function is only called once | ||
std::atomic_flag shutdown_latch_{ATOMIC_FLAG_INIT}; | ||
}; | ||
} // namespace logs | ||
} // namespace sdk | ||
OPENTELEMETRY_END_NAMESPACE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#pragma once | ||
|
||
#include "opentelemetry/version.h" | ||
|
||
OPENTELEMETRY_BEGIN_NAMESPACE | ||
namespace sdk | ||
{ | ||
namespace version | ||
{ | ||
extern const int MAJOR_VERSION; | ||
extern const int MINOR_VERSION; | ||
extern const int PATCH_VERSION; | ||
extern const char *PRE_RELEASE; | ||
extern const char *BUILD_METADATA; | ||
extern const int COUNT_NEW_COMMITS; | ||
extern const char *BRANCH; | ||
extern const char *COMMIT_HASH; | ||
extern const char *FULL_VERSION; | ||
extern const char *FULL_VERSION_WITH_BRANCH_COMMITHASH; | ||
extern const char *BUILD_DATE; | ||
} // namespace version | ||
} // namespace sdk | ||
OPENTELEMETRY_END_NAMESPACE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
add_library(opentelemetry_logs logger_provider.cc logger.cc) | ||
add_library(opentelemetry_logs logger_provider.cc logger.cc | ||
simple_log_processor.cc) | ||
|
||
target_link_libraries(opentelemetry_logs opentelemetry_common) |
Oops, something went wrong.