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

feat(geyser): support dumping accounts to csv #279

Merged
merged 24 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e18e277
init: refactor geyser cli + add csv dump subcommand
0xNineteen Sep 27, 2024
caba62b
feat(recycle_fba): add collapse method
0xNineteen Oct 1, 2024
91652a2
feat(channel): replace with a faster implementation (#252)
Rexicon226 Oct 1, 2024
e4fb106
init: refactor geyser cli + add csv dump subcommand
0xNineteen Sep 27, 2024
c3fc3d1
feat(recycle_fba): add collapse method
0xNineteen Oct 1, 2024
038a391
fix: integrate new channel impl
0xNineteen Oct 1, 2024
5c5c6ff
feat: add owner filter cli
0xNineteen Oct 1, 2024
2aa4145
feat: add geyser reader metrics
0xNineteen Oct 1, 2024
07c7861
feat: add geyser metrics to grafana
0xNineteen Oct 1, 2024
44b6984
fix: lint
0xNineteen Oct 1, 2024
2b3078a
docs: add info
0xNineteen Oct 1, 2024
f7778ba
fix: grafana uses rate instead of delta now
0xNineteen Oct 1, 2024
5b03899
fix: various comments
0xNineteen Oct 2, 2024
0775da7
fix: more comments
0xNineteen Oct 2, 2024
6c847ac
feat: move csv fba len to cli param
0xNineteen Oct 2, 2024
1dffb78
rename bin.zig to main.zig
0xNineteen Oct 2, 2024
d053fd6
fix: use gpa on debug
0xNineteen Oct 2, 2024
4692453
feat: check is alloc is possible after collapse
0xNineteen Oct 2, 2024
fce84e0
fix: errdefer on io writer
0xNineteen Oct 2, 2024
06eab71
docs: document metrics
0xNineteen Oct 3, 2024
3677aca
fix: better metrics
0xNineteen Oct 3, 2024
4a84e4c
docs: explain *why* we record the metrics we do
0xNineteen Oct 3, 2024
a535dd0
fix: rename to stderr
0xNineteen Oct 3, 2024
9262e2e
fix
0xNineteen Oct 3, 2024
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
5 changes: 3 additions & 2 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -151,14 +151,15 @@ pub fn build(b: *Build) void {

// geyser reader
const geyser_reader_exe = b.addExecutable(.{
.name = "geyser_reader",
.root_source_file = b.path("src/geyser/reader.zig"),
.name = "geyser",
.root_source_file = b.path("src/geyser/main.zig"),
.target = target,
.optimize = optimize,
.sanitize_thread = enable_tsan,
});
b.installArtifact(geyser_reader_exe);
geyser_reader_exe.root_module.addImport("sig", sig_mod);
geyser_reader_exe.root_module.addImport("zig-cli", zig_cli_module);

const geyser_reader_exe_run = b.addRunArtifact(geyser_reader_exe);
geyser_reader_exe_run.addArgs(b.args orelse &.{});
Expand Down
Loading
Loading