Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Stats] enable core worker stats #9355

Merged
merged 23 commits into from
Jul 29, 2020
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
cef6684
enable core worker stats
ashione Jul 8, 2020
e4879b2
Merge branch 'master' into enable-core-worker-stats
ashione Jul 9, 2020
e402f59
Merge remote-tracking branch 'origin/master' into enable-core-worker-…
ashione Jul 14, 2020
f4228e9
Merge remote-tracking branch 'github/master' into enable-core-worker-…
ashione Jul 14, 2020
86eebea
Merge remote-tracking branch 'github/master' into enable-core-worker-…
ashione Jul 15, 2020
f6b0114
bazel lint
ashione Jul 15, 2020
2fdcdf5
Merge remote-tracking branch 'github/master' into enable-core-worker-…
ashione Jul 17, 2020
32ff47c
make singleton thread for stats in core worker process
ashione Jul 17, 2020
b50d44e
Merge remote-tracking branch 'github/master' into enable-core-worker-…
ashione Jul 20, 2020
b0ac524
set up stats service when core worker process initialization
ashione Jul 20, 2020
5d19e7d
add new shutdown api patch for opencensus
ashione Jul 20, 2020
31d05ae
debug log level
ashione Jul 20, 2020
520a4e9
Update src/ray/core_worker/core_worker.h
ashione Jul 24, 2020
6d29cdf
Merge remote-tracking branch 'github/master' into enable-core-worker-…
ashione Jul 27, 2020
58be1d0
init config in raylet
ashione Jul 27, 2020
6e1f54e
Merge branch 'master' into enable-core-worker-stats
ashione Jul 28, 2020
7d4ef5f
remove counter for core worker process
ashione Jul 29, 2020
84d7163
fix typo
ashione Jul 29, 2020
c4a5f05
move stats moduel init/shutdown inline
ashione Jul 29, 2020
b128ba4
comment polished
ashione Jul 29, 2020
dab2b7e
move stats shutdown outside
ashione Jul 29, 2020
eac2eb0
remove duplicated comments
ashione Jul 29, 2020
9c5538a
Merge remote-tracking branch 'github/master' into enable-core-worker-…
ashione Jul 29, 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
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
ashione committed Jul 29, 2020
commit 84d716356e91ff817690bbe37877fc3658fca442
2 changes: 1 addition & 1 deletion src/ray/stats/stats.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static inline void Init(const TagsType &global_tags, const int metrics_agent_por
RAY_LOG(INFO) << "Disabled stats.";
return;
}
RAY_LOG(DEBUG) << "Initialize stats";
RAY_LOG(DEBUG) << "Initialized stats";

metrics_io_service_pool = std::make_shared<IOServicePool>(1);
metrics_io_service_pool->Run();
Expand Down