File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 57
57
cohctl get monitoring
58
58
curl -s http://127.0.0.1:9090/-/healthy
59
59
curl -s http://127.0.0.1:3000/api/health
60
- cohctl stop monitoring
60
+ cohctl stop monitoring -y
61
61
62
62
- uses : actions/upload-artifact@v4
63
63
if : failure()
Original file line number Diff line number Diff line change @@ -23,7 +23,14 @@ After you start the monitoring you can start a local cluster using `cohctl start
23
23
24
24
See the Coherence documentation to {commercial-docs-base-url}/manage/using-coherence-metrics.html[setup up Coherence metrics] on your own cluster.
25
25
26
- NOTE: You must have a `docker` version installed and running on your machine that includes the updated `docker compose` command.
26
+ If you are running a Coherence version before 14.1.2-0-0 or 25.03, you must set the following property on each
27
+ cluster member to emit the new style metrics used by the latest dashboards.
28
+
29
+ - `-Dcoherence.metrics.legacy.names=false`.
30
+
31
+ If you have a `docker` version installed and running on your machine that doesn't include the updated `docker compose` command,
32
+ you can use the `-D` option for `cohctl start manitoring` to use `docker-compose`.
33
+
27
34
28
35
* <<init-monitoring, `cohctl init monitoring`>> - initialize local monitoring for Coherence
29
36
* <<start-monitoring, `cohctl start monitoring`>> - starts the local monitoring stack
Original file line number Diff line number Diff line change @@ -226,6 +226,10 @@ Prometheus using docker compose.`,
226
226
227
227
grafanaURL := fmt .Sprintf ("http://localhost:%v/d/coh-main/coherence-dashboard-main" , grafanaPort )
228
228
cmd .Printf ("\n Open the Grafana dashboard at %s, using admin/admin\n \n " , grafanaURL )
229
+ cmd .Println ("Note: If you are running a Coherence version before 14.1.2-0-0 or 25.03, you must set the following" )
230
+ cmd .Println ("property on each cluster member to emit the new style metrics used by the latest dashboards:" )
231
+ cmd .Println (" -Dcoherence.metrics.legacy.names=false" )
232
+ cmd .Println ()
229
233
230
234
err = mon .dockerCommand ([]string {"ps" })
231
235
if err != nil {
You can’t perform that action at this time.
0 commit comments