-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dashboard: add detailed net requests panels
Add panels for net requests in progress/in stream queue to "Tarantool network activity" section. Deprecate existing net requests panels since they are superseded by new ones. (Since new ones are supported in Tarantool 2.10.0-beta2 or newer, do not remove them yet.) Metrics were introduced in metrics 0.13.0: - tnt_net_requests_in_progress_total - tnt_net_requests_in_progress_current - tnt_net_requests_in_stream_queue_total - tnt_net_requests_in_stream_queue_current Part of #133
- Loading branch information
1 parent
04216d3
commit 6031cc6
Showing
10 changed files
with
2,625 additions
and
677 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
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,12 +1,17 @@ | ||
FROM tarantool/tarantool:2.x-centos7 | ||
FROM centos:7 | ||
|
||
WORKDIR /app | ||
|
||
RUN yum install -y git \ | ||
cmake \ | ||
make \ | ||
gcc \ | ||
gcc-c++ | ||
gcc-c++ \ | ||
unzip | ||
COPY . . | ||
|
||
# Workaround for missing centos image for 2.10 | ||
RUN curl -L https://tarantool.io/OtKysgx/pre-release/2/installer.sh | bash | ||
RUN yum install -y tarantool tarantool-devel | ||
|
||
ENTRYPOINT tarantool ./generate_load.lua |
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
Oops, something went wrong.