Adding methods to get memory usage of server for the perchannel benchmark (#30390)
* Added new files for channel client/server * Committing to switch branch * Rebasing branch * Switching branch * Server process getting called * Still working * RPC received success, with sleep * gRPC Receive success, grpc timeout * Earlier but Clang tidy * Fix timeout issue, remove some logs * Added signint handler, test passing but flaky * added sleep to reduce flakiness, removed some dependencies, changed LOG to gpr_log * Changed benchmark_name default back to call * remove deleted files * grpc shutdown timeout * trying to add shutdown * Some changes * Removed shutdown * Automated change: Fix sanity tests * Changes for review comments * Changed comments * Changed benchmark driver defaults so that CI testing would happen for all benchmarks * Get server memory using RPC * Add PID method to get memory * Added gpr_subprocess_get_process_id to windows * Removed GetAfterSnapshot since theres a not RPC method to get memory * Automated change: Fix sanity tests * Changed benchmark driver defaults so that CI testing would happen for all benchmarks * Automated change: Fix sanity tests * Automated change: Fix sanity tests * Forgot semicolon * Fix includes * Automated change: Fix sanity tests * Added GetMemUsage and changed Snapshot and callback server and client to call it * Moved GetMemUsage from header file * removed some unnecessary includes * Automated change: Fix sanity tests * Updating build file * forgot a comma * Added tags to BUILD for memstats * Automated change: Fix sanity tests Co-authored-by: nancylucy01 <nancylucy01@users.noreply.github.com>pull/30433/head
parent
3d0bdb34c1
commit
fcdea5afcd
11 changed files with 163 additions and 11 deletions
@ -0,0 +1,56 @@ |
||||
// Copyright 2022 gRPC 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.
|
||||
|
||||
#include "test/core/memory_usage/memstats.h" |
||||
|
||||
#include <unistd.h> |
||||
|
||||
#include <fstream> |
||||
#include <string> |
||||
|
||||
#include "absl/strings/str_cat.h" |
||||
|
||||
#include <grpc/support/log.h> |
||||
|
||||
long GetMemUsage(absl::optional<int> pid) { |
||||
// Default is getting memory usage for self (calling process)
|
||||
std::string path = "/proc/self/stat"; |
||||
if (pid != absl::nullopt) { |
||||
path = absl::StrCat("/proc/", pid.value(), "/stat"); |
||||
} |
||||
std::ifstream stat_stream(path, std::ios_base::in); |
||||
|
||||
double resident_set = 0.0; |
||||
// Temporary variables for irrelevant leading entries in stats
|
||||
std::string temp_pid, comm, state, ppid, pgrp, session, tty_nr; |
||||
std::string tpgid, flags, minflt, cminflt, majflt, cmajflt; |
||||
std::string utime, stime, cutime, cstime, priority, nice; |
||||
std::string O, itrealvalue, starttime, vsize; |
||||
|
||||
// Get rss to find memory usage
|
||||
long rss; |
||||
stat_stream >> temp_pid >> comm >> state >> ppid >> pgrp >> session >> |
||||
tty_nr >> tpgid >> flags >> minflt >> cminflt >> majflt >> cmajflt >> |
||||
utime >> stime >> cutime >> cstime >> priority >> nice >> O >> |
||||
itrealvalue >> starttime >> vsize >> rss; |
||||
stat_stream.close(); |
||||
|
||||
// pid does not connect to an existing process
|
||||
GPR_ASSERT(!state.empty()); |
||||
|
||||
// Calculations in case x86-64 is configured to use 2MB pages
|
||||
long page_size_kb = sysconf(_SC_PAGE_SIZE) / 1024; |
||||
resident_set = rss * page_size_kb; |
||||
return resident_set; |
||||
} |
Loading…
Reference in new issue