diff --git a/modules/ROOT/nav.adoc b/modules/ROOT/nav.adoc index 5fec1f1f..8bf2a2d0 100644 --- a/modules/ROOT/nav.adoc +++ b/modules/ROOT/nav.adoc @@ -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] diff --git a/modules/ROOT/pages/_partials/rtf.adoc b/modules/ROOT/pages/_partials/rtf.adoc new file mode 100644 index 00000000..f9b8a115 --- /dev/null +++ b/modules/ROOT/pages/_partials/rtf.adoc @@ -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] +---- +Displays information about the application specified in `` + +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 [flags] +---- + +Creates a debugging information package for the application specified in `` + +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 ` +|`--heapdump`| Captures a JVM heap dump | `--heapdump ` +|=== + +// end::commands[] \ No newline at end of file diff --git a/modules/ROOT/pages/install.adoc b/modules/ROOT/pages/install.adoc index 7a4ead64..3fc32b59 100644 --- a/modules/ROOT/pages/install.adoc +++ b/modules/ROOT/pages/install.adoc @@ -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 |=== diff --git a/modules/ROOT/pages/rtf.adoc b/modules/ROOT/pages/rtf.adoc new file mode 100644 index 00000000..e74700ce --- /dev/null +++ b/modules/ROOT/pages/rtf.adoc @@ -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]