-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
profiler.h
81 lines (67 loc) · 1.84 KB
/
profiler.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#pragma once
#include <string>
#include "absl/status/statusor.h"
// Profiling support is provided in the release tcmalloc of `gperftools`, but not in the library
// that supplies the debug tcmalloc. So all the profiling code must be ifdef'd
// on PROFILER_AVAILABLE which is dependent on those two settings.
#if defined(GPERFTOOLS_TCMALLOC) && !defined(ENVOY_MEMORY_DEBUG_ENABLED)
#define PROFILER_AVAILABLE
#endif
namespace Envoy {
namespace Profiler {
/**
* Process wide CPU profiling.
*/
class Cpu {
public:
/**
* @return whether the profiler is enabled or not.
*/
static bool profilerEnabled();
/**
* Start the profiler and write to the specified path.
* @return bool whether the call to start the profiler succeeded.
*/
static bool startProfiler(const std::string& output_path);
/**
* Stop the profiler.
*/
static void stopProfiler();
};
/**
* Process wide heap profiling
*/
class Heap {
public:
/**
* @return whether the profiler is enabled in this build or not.
*/
static bool profilerEnabled();
/**
* @return whether the profiler is started or not
*/
static bool isProfilerStarted();
/**
* Start the profiler and write to the specified path.
* @return bool whether the call to start the profiler succeeded.
*/
static bool startProfiler(const std::string& output_path);
/**
* Stop the profiler.
* @return bool whether the file is dumped
*/
static bool stopProfiler();
};
/**
* Default profiler which will be enabled when tcmalloc (not `gperftools`) is used.
* This class is not thread-safe.
*/
class TcmallocProfiler {
public:
TcmallocProfiler() = default;
static absl::StatusOr<std::string> tcmallocHeapProfile();
static absl::Status startAllocationProfile();
static absl::StatusOr<std::string> stopAllocationProfile();
};
} // namespace Profiler
} // namespace Envoy