Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
3a5db85
added streams package
jryannel Oct 7, 2025
2f44ad8
cleanup net manager
jryannel Oct 7, 2025
2a2c0b8
rename source to device
jryannel Oct 7, 2025
42378a4
add todo for later
jryannel Oct 7, 2025
35e1ae9
clean up sender and add batch sizing
jryannel Oct 7, 2025
4dd318b
make sure monitor feeder feeds correcly
jryannel Oct 7, 2025
0cc63fb
add streams cli commands
jryannel Oct 7, 2025
694e4d6
Add client/controller rpc for cli interface
jryannel Oct 20, 2025
6460129
update streams
jryannel Oct 23, 2025
e4740d5
update monitoring
jryannel Oct 23, 2025
3c40072
fix wrong connection
jryannel Oct 28, 2025
b79bae4
fix lint errors
jryannel Oct 29, 2025
ec15399
remove docs
jryannel Nov 5, 2025
8e39c70
rework stream cli cmds
jryannel Nov 5, 2025
dca8dea
streamline CLI cmds
jryannel Nov 5, 2025
9041888
fix error
jryannel Nov 5, 2025
f32cd5d
rework cmds to lowercase short prompts
jryannel Nov 6, 2025
8a91131
wip: import
jryannel Nov 7, 2025
2291ace
always on buffer recording, simplified cli cmds
jryannel Nov 10, 2025
8bcf296
update always on buffer service
jryannel Nov 10, 2025
bb53682
add stream import cmd
jryannel Nov 11, 2025
4dbf176
remove buffer cmds
jryannel Nov 11, 2025
302a946
remove devices cmds
jryannel Nov 11, 2025
e4e3dc8
remove more devices cmd
jryannel Nov 11, 2025
251af80
add notes to recordings as replacement for device info
jryannel Nov 11, 2025
60ab355
allow stop recording all or by device id
jryannel Nov 12, 2025
2dc9bab
allow multi device recording
jryannel Nov 13, 2025
f59bac3
fix parent sessions for multi device recordings
jryannel Nov 13, 2025
3bcf371
Update monitor sample.ndjson for performance testing
jryannel Nov 13, 2025
abad56f
autostart recording with delay
jryannel Nov 14, 2025
9758aa4
add logging and batch state updates
jryannel Dec 2, 2025
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
7 changes: 7 additions & 0 deletions cmd/apigear-streams/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "github.com/apigear-io/cli/pkg/streams/cli"

func main() {
cli.Execute()
}
8 changes: 7 additions & 1 deletion data/mon/sample.ndjson
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{ "type": "call", "symbol": "demo.Counter/increment" }
{ "type": "state", "symbol": "demo.Counter", "data": { "count": 1 } }
{ "type": "call", "symbol": "demo.Counter/increment" }
{ "type": "state", "symbol": "demo.Counter", "data": { "count": 2 } }
{ "type": "state", "symbol": "demo.Counter", "data": { "count": 2 } }
{ "type": "call", "symbol": "demo.Counter/increment" }
{ "type": "state", "symbol": "demo.Counter", "data": { "count": 3 } }
{ "type": "call", "symbol": "demo.Counter/increment" }
{ "type": "state", "symbol": "demo.Counter", "data": { "count": 4 } }
{ "type": "call", "symbol": "demo.Counter/increment" }
{ "type": "state", "symbol": "demo.Counter", "data": { "count": 5 } }
29 changes: 0 additions & 29 deletions docs/apigear.md

This file was deleted.

25 changes: 0 additions & 25 deletions docs/apigear_completion.md

This file was deleted.

44 changes: 0 additions & 44 deletions docs/apigear_completion_bash.md

This file was deleted.

35 changes: 0 additions & 35 deletions docs/apigear_completion_fish.md

This file was deleted.

32 changes: 0 additions & 32 deletions docs/apigear_completion_powershell.md

This file was deleted.

46 changes: 0 additions & 46 deletions docs/apigear_completion_zsh.md

This file was deleted.

21 changes: 0 additions & 21 deletions docs/apigear_config.md

This file was deleted.

23 changes: 0 additions & 23 deletions docs/apigear_config_get.md

This file was deleted.

23 changes: 0 additions & 23 deletions docs/apigear_config_info.md

This file was deleted.

21 changes: 0 additions & 21 deletions docs/apigear_generate.md

This file was deleted.

29 changes: 0 additions & 29 deletions docs/apigear_generate_expert.md

This file was deleted.

27 changes: 0 additions & 27 deletions docs/apigear_generate_solution.md

This file was deleted.

Loading
Loading