mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// microshift_running_apps/microshift-observability-service.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="microshift-otel-install_{context}"]
|
|
= Installing and enabling {microshift-short} Observability
|
|
|
|
[role="_abstract"]
|
|
You can install {microshift-short} Observability at any time, including during the initial {microshift-short} installation. Observability collects and transmits system data for monitoring and analysis, such as performance and usage metrics and error reporting.
|
|
|
|
.Procedure
|
|
. Install the `microshift-observability` RPM by entering the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ sudo dnf install microshift-observability
|
|
----
|
|
|
|
. Enable the `microshift-observability` system service by entering the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ sudo systemctl enable microshift-observability
|
|
----
|
|
|
|
. Start the `microshift-observability` system service by entering the following command:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ sudo systemctl start microshift-observability
|
|
----
|
|
|
|
. Restart {microshift-short} after the initial installation.
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ sudo systemctl restart microshift-observability
|
|
----
|
|
|
|
The installation is successful if there is no output after you start the `microshift-observability` RPM.
|