Skip to main content

signaloid-cli cores get

Get details about a specific core.

Synopsis

signaloid-cli cores get --core-id <id>

Options

OptionRequiredDescription
--core-id <id>YesCore ID
--format <type>NoOutput format: json|table (default: table)

Description

The cores get command retrieves detailed information about a specific Signaloid compute core. This includes comprehensive details such as core ID, name, class, precision, memory size, microarchitecture, correlation tracking mode, description, default status, and creation timestamp.

Examples

signaloid-cli cores get --core-id cor_0f1ada44924d499bb56485b4ce9d35a0

Output:

+---------------------------+--------------------------------------------+
| Core ID | cor_0f1ada44924d499bb56485b4ce9d35a0 |
|---------------------------|--------------------------------------------|
| Correlation Tracking | Disable |
|---------------------------|--------------------------------------------|
| Created At | 1729768745 |
|---------------------------|--------------------------------------------|
| Updated At | 1770208620 |
|---------------------------|--------------------------------------------|
| Object | Core |
|---------------------------|--------------------------------------------|
| Microarchitecture | Athens |
|---------------------------|--------------------------------------------|
| Memory Size | 32000000 |
|---------------------------|--------------------------------------------|
| Owner | usr_000000000000000000000000000000ab |
|---------------------------|--------------------------------------------|
| Class | C0Pro |
|---------------------------|--------------------------------------------|
| Name | C0Pro-Athens-8 |
|---------------------------|--------------------------------------------|
| Precision | 8 |
+---------------------------+--------------------------------------------+

Troubleshooting

"Core not found" Error

Problem: Cannot access specified core.

Solutions:

  1. List available cores: signaloid-cli cores list
  2. Verify core ID is correct
  3. Check if core was deleted
  4. Ensure you have permissions to access the core

See Also