Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
27adfde
Clean add of tracez processor files
jajanet Jul 8, 2020
8f3d1bc
Change cmake files
jajanet Jul 8, 2020
f106309
adjust cmake files
jajanet Jul 8, 2020
75cb6ee
Fix CMake and test style
jajanet Jul 9, 2020
d5d8ed5
Add tests, better test names/docstrings
jajanet Jul 9, 2020
f8df6bb
Cast recordable to span_data, fix test formatting
jajanet Jul 10, 2020
8508a00
Add touchups to tests and formatting
jajanet Jul 10, 2020
f1f54f0
Change asserts into expects
jajanet Jul 10, 2020
2b1a5b7
Fix OnEnd mem leak, reset flush/shutdown functions
jajanet Jul 13, 2020
bc0aaea
Add TODOs for thread safety concerns, update README
jajanet Jul 13, 2020
af3b3a7
Make processor more thread-safe with tests
jajanet Jul 13, 2020
7085288
Add missed TODO comment
jajanet Jul 13, 2020
80f04c5
Merge branch 'zpages-tracez-spanprocessor-threading' into zpages-trac…
jajanet Jul 13, 2020
09037be
Fix test thread safety, add test fixtures
jajanet Jul 14, 2020
69a30c9
Adjust import order, spacing
jajanet Jul 14, 2020
466ac2e
Add noop tests for ForceFlush/Shutdown
jajanet Jul 14, 2020
d9ba5b3
Move includes, remove README update date
jajanet Jul 14, 2020
0dc7aa6
Order includes alphabetically
jajanet Jul 14, 2020
4c23ec5
Merge remote-tracking branch 'open-telemetry/master' into zpages-trac…
jajanet Jul 15, 2020
82fcf33
Add working bazel files to test server under ext
jajanet Jul 15, 2020
289bb7a
Remove commented out code
jajanet Jul 15, 2020
eb00b25
Resolve file conflicts
jajanet Jul 16, 2020
fb64b72
Remove all example server code
jajanet Jul 16, 2020
be0e765
Rename .hpp to .h files
jajanet Jul 16, 2020
6897066
Add newline
jajanet Jul 16, 2020
8437c95
Remove HTTP server code
jajanet Jul 17, 2020
418aa5f
Next files under json folder
jajanet Jul 17, 2020
cf9df58
Merge branch 'master' into json_dependencies
reyang Jul 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,12 @@ http_archive(
strip_prefix = "benchmark-1.5.0",
urls = ["https://github.com/google/benchmark/archive/v1.5.0.tar.gz"],
)

http_archive(
name = "github_nlohmann_json",
sha256 = "69cc88207ce91347ea530b227ff0776db82dcb8de6704e1a3d74f4841bc651cf",
urls = [
"https://github.com/nlohmann/json/releases/download/v3.6.1/include.zip",
],
build_file = "//third_party:nlohmann_json.BUILD",
)
1 change: 1 addition & 0 deletions third_party/json/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
exports_files(["LICENSE"])
14 changes: 14 additions & 0 deletions third_party/json/nlohmann_json.BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
licenses(["notice"]) # 3-Clause BSD

exports_files(["LICENSE.MIT"])

cc_library(
name = "json",
hdrs = glob([
"include/**/*.hpp",
]),
includes = ["include"],
visibility = ["//visibility:public"],
alwayslink = 1,
)