forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofiler.h
66 lines (55 loc) · 1.45 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
#pragma once
#include <string>
// 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();
};
} // namespace Profiler
} // namespace Envoy