Skip to content
Open
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
6 changes: 2 additions & 4 deletions docs/Product-Requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ The CLI uses topics (space-separated) to group related commands logically.
- `$ ably apps stats [ID]`: Views app stats for the specified (or current) app. Supports `--live` polling, `--unit`, `--start`, `--end`, `--limit`.
- `$ ably apps switch [APPID]`: Switches the active app configuration to the specified App ID or prompts for selection.
- `$ ably apps current`: Shows the currently selected app configuration.
- `$ ably apps logs subscribe`: Alias for `ably logs app subscribe`.
- `$ ably apps logs history`: Alias for `ably logs app history`.

**Channel Rules (`ably apps channel-rules`)**
*(Manage Ably channel rules/namespaces via Control API)*
Expand Down Expand Up @@ -134,8 +132,8 @@ The CLI uses topics (space-separated) to group related commands logically.
**Logging (`ably logs`)**
*(Stream and retrieve logs from meta channels)*

- `$ ably logs app subscribe`: Streams logs from `[meta]log`. Supports `--rewind`.
- `$ ably logs app history`: Retrieves historical logs from `[meta]log`. Supports `--limit`, `--direction`.
- `$ ably logs subscribe`: Streams logs from `[meta]log`. Supports `--rewind`.
- `$ ably logs history`: Retrieves historical logs from `[meta]log`. Supports `--limit`, `--direction`.
- `$ ably logs channel-lifecycle subscribe`: Streams logs from `[meta]channel.lifecycle`.
- `$ ably logs connection-lifecycle subscribe`: Streams logs from `[meta]connection.lifecycle`.
- `$ ably logs connection-lifecycle history`: Retrieves historical connection logs. Supports `--limit`, `--direction`.
Expand Down
107 changes: 0 additions & 107 deletions src/commands/apps/logs/history.ts

This file was deleted.

24 changes: 0 additions & 24 deletions src/commands/apps/logs/index.ts

This file was deleted.

47 changes: 0 additions & 47 deletions src/commands/apps/logs/subscribe.ts

This file was deleted.

66 changes: 0 additions & 66 deletions src/commands/channels/logs.ts

This file was deleted.

66 changes: 0 additions & 66 deletions src/commands/connections/logs.ts

This file was deleted.

5 changes: 1 addition & 4 deletions src/commands/interactive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,7 @@ export default class Interactive extends Command {

// Commands available only for authenticated users
if (!isAnonymousMode) {
commands.push(
["channels logs", "View live channel events"],
["channels list", "List active channels"],
);
commands.push(["channels list", "List active channels"]);
}

commands.push(
Expand Down
25 changes: 0 additions & 25 deletions src/commands/logs/app/index.ts

This file was deleted.

Loading
Loading