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
1 change: 1 addition & 0 deletions modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
** xref:datagraph-load-balancer.adoc[DataGraph Load Balancers]
** xref:design-center.adoc[Design Center Projects]
** xref:exchange-assets.adoc[Exchange Assets]
** xref:rtf.adoc[Runtime Fabric]
** xref:runtime-manager.adoc[Runtime Manager]
*** xref:standalone-apps.adoc[Hybrid Applications]
*** xref:standalone-alerts.adoc[Alerts for Hybrid Applications]
Expand Down
48 changes: 48 additions & 0 deletions modules/ROOT/pages/_partials/rtf.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
= Runtime Fabric Applications

// tag::summary[]

[%header,cols="35a,65a"]
|===
|Command |Description
|xref:anypoint-cli::rtf.adoc#rtf-apps-describe[rtf:apps:describe] | Shows application details
|xref:anypoint-cli::rtf.adoc#rtf-apps-package[rtf:apps:package] | Creates a debugging information package
|===

// end::summary[]

// tag::commands[]

[[rtf-apps-describe]]

== rtf:apps:describe

----
> rtf:apps:describe [flags] <name>
----
Displays information about the application specified in `<name>`

Use the `--output` flag to specify the response format. Supported values are `table` (default) and `json`.

This command accepts the xref:index.adoc#default-options[default flags].

[[rtf-apps-package]]

== rtf:apps:package

----
> rtf:apps:package <name> [flags]
----

Creates a debugging information package for the application specified in `<name>`

In addition to the xref:index.adoc#default-options[default flags], this command accepts the following flags:

[%header,cols="30a,40a,30a"]
|===
|Flag | Description | Example
|`--pod`| Specify a pod to focus on | `-pod <replica_name>`
|`--heapdump`| Captures a JVM heap dump | `--heapdump <app_name> <destination_path>`
|===

// end::commands[]
1 change: 1 addition & 0 deletions modules/ROOT/pages/install.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ You can install the following plugins with Anypoint CLI:
| anypoint-cli-exchange-plugin| Exchange command topics
| anypoint-cli-governance-plugin| API Governance command topics
| anypoint-cli-runtime-mgr-plugin | Runtime Manager command topics
| anypoint-cli-rtf-apps-plugin | Runtime Fabric command topics
| anypoint-cli-secrets-mgr-plugin | Secrets Manager command topics
|===

Expand Down
7 changes: 7 additions & 0 deletions modules/ROOT/pages/rtf.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
= CLI for Runtime Fabric Applications

Use the `rtf:apps` commands to automate your Runtime Fabric processes. For more information about how to use these commands, refer to xref:runtime-fabric::index.adoc[the Runtime Fabric documentation].

include::anypoint-cli::partial$rtf.adoc[tag=summary]

include::anypoint-cli::partial$rtf.adoc[tag=commands]