Skip to content

Commit

Permalink
Style changes for correct numerical order and word smithing some cont…
Browse files Browse the repository at this point in the history
…ent.
  • Loading branch information
gwynnemonahan committed Jun 30, 2023
1 parent a3927c3 commit 2759327
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions modules/ossm-integrating-with-user-workload-monitoring.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data:
enableUserWorkload: true
----

. Disable installation of the default Prometheus provided by the OSSM, configure Prometheus extension provider and disable managing network policies by service mesh to not block ingress traffic from external Prometheus.
. Configure the Service Mesh control plane as follows:
+
[source,yaml]
----
Expand All @@ -39,16 +39,21 @@ metadata:
spec:
addons:
prometheus:
enabled: false
enabled: false # <1>
meshConfig:
extensionProviders:
- name: prometheus
- name: prometheus # <2>
prometheus: {}
security:
manageNetworkPolicy: false
manageNetworkPolicy: false # <3>
----
<1> Disbale the default Prometheus instance provided by OSSM.
<2> COnfigure the Prometheus extension provider.
<3> Disable OSSM managed network policies.

//Disable installation of the default Prometheus provided by the OSSM, configure Prometheus extension provider and disable managing network policies by service mesh to not block ingress traffic from external Prometheus.

. Apply a Telemetry object to enable traffic metrics in Istio proxies.
. Apply a telemetry object to enable traffic metrics in Istio proxies.
+
[source,yaml]
----
Expand All @@ -62,12 +67,12 @@ spec:
- providers:
- name: prometheus
----

+
[NOTE]
====
When Telemetry object is created in the control plane namespace, then it applies to all workloads in a mesh.
You can also apply this object only in selected namespaces or to selected workloads by setting `spec.selector.matchLabels`.
When a telemetry object is created in the control plane namespace, it applies to all workloads in a mesh. You can apply the telemetry object only in selected namespaces or workloads, by setting `spec.selector.matchLabels`.
====
//You can also apply this object only in selected namespaces or to selected workloads by setting `spec.selector.matchLabels`.

. Apply a ServiceMonitor to monitor Istio control plane.
+
Expand Down

0 comments on commit 2759327

Please sign in to comment.