Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
bc94649
feat: arg parsing improvements and lustre configurations
hariharan-devarajan Nov 7, 2025
e847bfc
Added slurm integration
hariharan-devarajan Nov 13, 2025
d84bb57
Enhance probe management by adding enable_explorer flag and loading e…
hariharan-devarajan Nov 16, 2025
078a19c
added initial docs
hariharan-devarajan Nov 21, 2025
f6a8428
add linting for sh and cmake files.
hariharan-devarajan Nov 29, 2025
e8211c2
Fixed PR Changes
hariharan-devarajan Mar 12, 2026
d0e7275
feat: arg parsing improvements and lustre configurations
hariharan-devarajan Nov 7, 2025
ea03050
Added slurm integration
hariharan-devarajan Nov 13, 2025
268963b
add linting for sh and cmake files.
hariharan-devarajan Nov 29, 2025
c509dfc
docs(index): add slurm_integration to advanced topics toc
Feb 19, 2026
3cf84f5
feat: changed datacrumbs generation based logic to dynamic probe
hariharan-devarajan Mar 19, 2026
a83b7f2
feat: enhance docker build workflow to support multiple Ubuntu versions
hariharan-devarajan Mar 24, 2026
4989c32
feat: add option to disable probe signing and update related logic
hariharan-devarajan Mar 24, 2026
d3c56cb
feat: add option to override kernel headers path in CMake configuration
hariharan-devarajan Mar 24, 2026
d1c3e0a
feat: add system configuration file handling and update related logic
hariharan-devarajan Mar 24, 2026
2a82ebb
feat: add error handling for updating system configuration file permi…
hariharan-devarajan Mar 24, 2026
25057ba
feat: add configurable log directory for derived configurations
hariharan-devarajan Mar 25, 2026
0a55702
Refactor runtime probe state management and integrate SQLite database
hariharan-devarajan Mar 25, 2026
9d2d590
docker build fixes.
hariharan-devarajan Apr 9, 2026
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 .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ ColumnLimit: 100
AllowShortFunctionsOnASingleLine: Inline
DerivePointerAlignment: false
PointerAlignment: Left
UseTab: Never
UseTab: Never
7 changes: 7 additions & 0 deletions .cmake-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
format:
tab_size: 2
line_width: 100
dangle_parens: true
max_pargs_hwrap: 3
separate_ctrl_name_with_space: false
separate_fn_name_with_space: false
42 changes: 0 additions & 42 deletions .devcontainer/devcontainer.json

This file was deleted.

17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
root = true

[CMakeLists.txt]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{sh,sh.in}]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
Loading
Loading