Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion userspace/sinspui/cursescomponents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ using namespace std;
#include <libsinsp/sinsp_int.h>
#include <libsinsp/filter.h>
#include <libsinsp/filterchecks.h>
#include <libsinsp/utils.h>

#include <chisel/chisel_table.h>
#include <chisel/chisel_viewinfo.h>
#include "cursescomponents.h"
#include "cursestable.h"
#include "cursesui.h"
#include "utils.h"

extern bool g_filterchecks_force_raw_times;

Expand Down
2 changes: 1 addition & 1 deletion userspace/sysdig/csysdig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ limitations under the License.
#include "cursescomponents.h"
#include "cursestable.h"
#include "cursesui.h"
#include "scap_open_exception.h"
#include <libsinsp/scap_open_exception.h>
#include <chisel/chisel_capture_interrupt_exception.h>

#define MOUSE_CAPABLE_TERM "xterm-1003"
Expand Down
8 changes: 4 additions & 4 deletions userspace/sysdig/sysdig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ limitations under the License.

#include <libsinsp/sinsp.h>
#include <libsinsp/sinsp_cycledumper.h>
#include "scap_open_exception.h"
#include <libsinsp/scap_open_exception.h>
#include <libsinsp/utils.h>
#include <libsinsp/plugin.h>
#include <libsinsp/plugin_manager.h>
#include <chisel/chisel_capture_interrupt_exception.h>
#ifdef HAS_CAPTURE
#ifndef WIN32
Expand All @@ -45,9 +48,6 @@ limitations under the License.
#include <chisel/chisel_utils.h>
#include <chisel/chisel_fields_info.h>
#endif
#include "utils.h"
#include "plugin.h"
#include "plugin_manager.h"

#include "utils/sinsp_opener.h"
#include "utils/plugin_utils.h"
Expand Down
4 changes: 2 additions & 2 deletions userspace/sysdig/utils/plugin_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ limitations under the License.
#include <yaml-cpp/yaml.h>
#include <nlohmann/json.hpp>

#include <filterchecks.h>
#include <plugin_manager.h>
#include <libsinsp/filterchecks.h>
#include <libsinsp/plugin_manager.h>

#ifdef _WIN32
#define SHAREDOBJ_PREFIX ""
Expand Down
4 changes: 2 additions & 2 deletions userspace/sysdig/utils/plugin_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ limitations under the License.
#include <string>
#include <memory>
#include <unordered_set>
#include <sinsp.h>
#include <plugin.h>
#include <libsinsp/sinsp.h>
#include <libsinsp/plugin.h>

class plugin_utils
{
Expand Down
2 changes: 1 addition & 1 deletion userspace/sysdig/utils/sinsp_opener.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ limitations under the License.

#include "sinsp_opener.h"

#include <sinsp_exception.h>
#include <libsinsp/sinsp_exception.h>
#ifdef HAS_CAPTURE
#ifndef WIN32
#include "driver_config.h"
Expand Down
2 changes: 1 addition & 1 deletion userspace/sysdig/utils/sinsp_opener.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ limitations under the License.
*/
#pragma once

#include <sinsp.h>
#include <libsinsp/sinsp.h>

#include <string>

Expand Down
2 changes: 1 addition & 1 deletion userspace/sysdig/utils/supported_events.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ limitations under the License.
*/
#pragma once

#include <sinsp.h>
#include <libsinsp/sinsp.h>

void print_supported_events(sinsp* inspector, bool markdown);
2 changes: 1 addition & 1 deletion userspace/sysdig/utils/supported_fields.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ limitations under the License.

#include "common.h"
#include "supported_fields.h"
#include <filterchecks.h>
#include <libsinsp/filterchecks.h>

#include <map>
#include <set>
Expand Down
2 changes: 1 addition & 1 deletion userspace/sysdig/utils/supported_fields.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.
#pragma once

#include <string>
#include <sinsp.h>
#include <libsinsp/sinsp.h>
#include "plugin_utils.h"

void print_supported_fields(
Expand Down
Loading