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

Add DTRACE points to measure request timings. #11245

Merged
merged 18 commits into from
Mar 20, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Include sdt.h with source.
  • Loading branch information
neunhoef committed Mar 5, 2020
commit d85e7ca5f9e3166019d5d8f35782d55eae54b5e0
7 changes: 3 additions & 4 deletions arangod/GeneralServer/CommTask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,14 @@

#include "CommTask.h"

#ifdef USE_DTRACE
#include <sys/sdt.h>
#endif

#include "ApplicationFeatures/ApplicationServer.h"
#include "Basics/EncodingUtils.h"
#include "Basics/HybridLogicalClock.h"
#include "Basics/StaticStrings.h"
#include "Basics/compile-time-strlen.h"
#ifdef USE_DTRACE
#include "Basics/sdt.h"
#endif
#include "Cluster/ServerState.h"
#include "GeneralServer/AsyncJobManager.h"
#include "GeneralServer/AuthenticationFeature.h"
Expand Down
7 changes: 3 additions & 4 deletions arangod/GeneralServer/H2CommTask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,12 @@

#include "H2CommTask.h"

#ifdef USE_DTRACE
#include <sys/sdt.h>
#endif

#include "Basics/Exceptions.h"
#include "Basics/ScopeGuard.h"
#include "Basics/asio_ns.h"
#ifdef USE_DTRACE
#include "Basics/sdt.h"
#endif
#include "Cluster/ServerState.h"
#include "GeneralServer/GeneralServer.h"
#include "GeneralServer/GeneralServerFeature.h"
Expand Down
7 changes: 3 additions & 4 deletions arangod/GeneralServer/HttpCommTask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,11 @@

#include "HttpCommTask.h"

#ifdef USE_DTRACE
#include <sys/sdt.h>
#endif

#include "Basics/ScopeGuard.h"
#include "Basics/asio_ns.h"
#ifdef USE_DTRACE
#include "Basics/sdt.h"
#endif
#include "Cluster/ServerState.h"
#include "GeneralServer/GeneralServer.h"
#include "GeneralServer/GeneralServerFeature.h"
Expand Down
7 changes: 3 additions & 4 deletions arangod/GeneralServer/RestHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,15 @@

#include "RestHandler.h"

#ifdef USE_DTRACE
#include <sys/sdt.h>
#endif

#include <fuerte/jwt.h>
#include <velocypack/Exception.h>

#include "ApplicationFeatures/ApplicationServer.h"
#include "Basics/RecursiveLocker.h"
#include "Basics/StringUtils.h"
#ifdef USE_DTRACE
#include "Basics/sdt.h"
#endif
#include "Cluster/ClusterFeature.h"
#include "Cluster/ClusterInfo.h"
#include "Cluster/ClusterMethods.h"
Expand Down
Loading