From 1aaf341455da01bbd925c967d864843b60e1b841 Mon Sep 17 00:00:00 2001 From: fantkolja Date: Wed, 17 Jun 2026 15:24:31 +0300 Subject: [PATCH 01/10] check the build command --- .github/workflows/deploy-preview.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index 7fd271878..e8dea682b 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -42,14 +42,8 @@ jobs: - name: Build site run: | - node_modules/.bin/load-global-playbook \ - -r hazelcast/hz-docs \ - -b "${BRANCH}" - node_modules/.bin/antora \ - --to-dir docs \ - --log-level=warn \ - --log-failure-level=warn \ - --fetch global-antora-playbook.yml + node_modules/.bin/load-global-playbook -r hazelcast/hz-docs -b "${BRANCH}" + node_modules/.bin/antora --to-dir docs --log-level=warn --log-failure-level=warn --fetch global-antora-playbook.yml env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} BRANCH: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.base.ref || github.ref_name }} From 152935f4e254b09e61b70fbada1ba1691ca236ba Mon Sep 17 00:00:00 2001 From: fantkolja Date: Wed, 17 Jun 2026 16:18:55 +0300 Subject: [PATCH 02/10] check the build command --- docs/modules/ROOT/pages/list-of-metrics.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/modules/ROOT/pages/list-of-metrics.adoc b/docs/modules/ROOT/pages/list-of-metrics.adoc index 741480e47..875aa6a65 100644 --- a/docs/modules/ROOT/pages/list-of-metrics.adoc +++ b/docs/modules/ROOT/pages/list-of-metrics.adoc @@ -2370,7 +2370,7 @@ Based on your latency tolerance in your business use case, you can define a thre .TCP [%collapsible] ==== -Protocol-specific TCP byte metrics are available only when Advanced Networking is enabled. `{PROTOCOL}` is one of `MEMBER`, `CLIENT`, `WAN`, `REST`, or `MEMCACHE`; `WAN` includes all WAN protocol endpoints on the reporting member. +Protocol-specific TCP byte metrics are available only when Advanced Networking is enabled. `\{PROTOCOL}` is one of `MEMBER`, `CLIENT`, `WAN`, `REST`, or `MEMCACHE`; `WAN` includes all WAN protocol endpoints on the reporting member. [cols="4,1,6a"] |=== @@ -2406,7 +2406,7 @@ Protocol-specific TCP byte metrics are available only when Advanced Networking i |bytes |Number of bytes received over all connections (active and closed) -|`tcp.bytesReceived.{PROTOCOL}` +|`tcp.bytesReceived.\{PROTOCOL}` |bytes |Number of bytes received over all connections for the protocol (Advanced Networking only) @@ -2414,7 +2414,7 @@ Protocol-specific TCP byte metrics are available only when Advanced Networking i |bytes |Number of bytes sent over all connections (active and closed) -|`tcp.bytesSend.{PROTOCOL}` +|`tcp.bytesSend.\{PROTOCOL}` |bytes |Number of bytes sent over all connections for the protocol (Advanced Networking only) From 848c8fac455b7f41eee0e16dd26874dc1f3f39cb Mon Sep 17 00:00:00 2001 From: fantkolja Date: Wed, 17 Jun 2026 16:26:11 +0300 Subject: [PATCH 03/10] check the build command --- .github/workflows/deploy-preview.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index e8dea682b..208191781 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -42,8 +42,15 @@ jobs: - name: Build site run: | - node_modules/.bin/load-global-playbook -r hazelcast/hz-docs -b "${BRANCH}" - node_modules/.bin/antora --to-dir docs --log-level=warn --log-failure-level=warn --fetch global-antora-playbook.yml + node_modules/.bin/load-global-playbook \ + -r hazelcast/hz-docs \ + -b "${BRANCH}" + cat global-antora-playbook.yml + node_modules/.bin/antora \ + --to-dir docs \ + --log-level=warn \ + --log-failure-level=warn \ + --fetch global-antora-playbook.yml env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} BRANCH: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.base.ref || github.ref_name }} From 1971f8ba87a16a845cd9d7cc0191c03e8cf86b58 Mon Sep 17 00:00:00 2001 From: fantkolja Date: Wed, 17 Jun 2026 16:35:08 +0300 Subject: [PATCH 04/10] check the build command --- .github/workflows/validate.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/validate.yml diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 000000000..da1fe8192 --- /dev/null +++ b/.github/workflows/validate.yml @@ -0,0 +1,17 @@ +name: Docs validation + +on: + pull_request: + branches: [main, 'v/*'] + workflow_dispatch: + +jobs: + validate-docs: + + runs-on: ubuntu-latest + + steps: + - name: Checkout Current Repo + uses: actions/checkout@v6 + - name: Validate Docs + uses: hazelcast/hazelcast-docs-tools/.github/actions/validate-docs@actions/v1 \ No newline at end of file From 047233a74778e571bacb9c17c6274d13e4778e21 Mon Sep 17 00:00:00 2001 From: fantkolja Date: Wed, 17 Jun 2026 17:42:33 +0300 Subject: [PATCH 05/10] check the build command --- .github/workflows/deploy-preview.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index 208191781..58269eb1b 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -34,7 +34,7 @@ jobs: - uses: actions/setup-node@v6 with: - node-version: '24' + node-version: '22' cache: 'npm' - name: Install dependencies @@ -42,15 +42,16 @@ jobs: - name: Build site run: | - node_modules/.bin/load-global-playbook \ + ./node_modules/.bin/load-global-playbook \ -r hazelcast/hz-docs \ -b "${BRANCH}" cat global-antora-playbook.yml - node_modules/.bin/antora \ + ./node_modules/.bin/antora \ + --fetch --to-dir docs \ --log-level=warn \ --log-failure-level=warn \ - --fetch global-antora-playbook.yml + global-antora-playbook.yml env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} BRANCH: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.base.ref || github.ref_name }} From eece262aedc317d7f4aab3f846a015ddae0c4196 Mon Sep 17 00:00:00 2001 From: fantkolja Date: Wed, 17 Jun 2026 17:47:51 +0300 Subject: [PATCH 06/10] check the build command --- .github/workflows/deploy-preview.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index 58269eb1b..59f907a61 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -50,8 +50,7 @@ jobs: --fetch --to-dir docs \ --log-level=warn \ - --log-failure-level=warn \ - global-antora-playbook.yml + --log-failure-level=warn global-antora-playbook.yml env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} BRANCH: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.base.ref || github.ref_name }} From 9096e9ac776f31a82d937defd7a3f4a49bf5dcd9 Mon Sep 17 00:00:00 2001 From: fantkolja Date: Wed, 17 Jun 2026 17:52:53 +0300 Subject: [PATCH 07/10] check the build command --- .github/workflows/deploy-preview.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index 59f907a61..a48726728 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -47,10 +47,11 @@ jobs: -b "${BRANCH}" cat global-antora-playbook.yml ./node_modules/.bin/antora \ - --fetch + --fetch \ --to-dir docs \ --log-level=warn \ - --log-failure-level=warn global-antora-playbook.yml + --log-failure-level=warn \ + global-antora-playbook.yml env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} BRANCH: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.base.ref || github.ref_name }} From 1683518b8e1f02c8928ad4b0f1526acf386cf43f Mon Sep 17 00:00:00 2001 From: fantkolja Date: Wed, 17 Jun 2026 17:55:07 +0300 Subject: [PATCH 08/10] check the build command --- .github/workflows/deploy-preview.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index a48726728..7f06dc066 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -34,7 +34,7 @@ jobs: - uses: actions/setup-node@v6 with: - node-version: '22' + node-version: '24' cache: 'npm' - name: Install dependencies @@ -45,7 +45,6 @@ jobs: ./node_modules/.bin/load-global-playbook \ -r hazelcast/hz-docs \ -b "${BRANCH}" - cat global-antora-playbook.yml ./node_modules/.bin/antora \ --fetch \ --to-dir docs \ From b5bec3cc9bc9245ae6fea31d0913d0e325c86513 Mon Sep 17 00:00:00 2001 From: fantkolja Date: Wed, 17 Jun 2026 17:57:43 +0300 Subject: [PATCH 09/10] check the build command --- .github/workflows/validate.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/validate.yml diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml deleted file mode 100644 index da1fe8192..000000000 --- a/.github/workflows/validate.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Docs validation - -on: - pull_request: - branches: [main, 'v/*'] - workflow_dispatch: - -jobs: - validate-docs: - - runs-on: ubuntu-latest - - steps: - - name: Checkout Current Repo - uses: actions/checkout@v6 - - name: Validate Docs - uses: hazelcast/hazelcast-docs-tools/.github/actions/validate-docs@actions/v1 \ No newline at end of file From 7272d591025fb45b1d6885fe675ccd97ceccb9d3 Mon Sep 17 00:00:00 2001 From: fantkolja Date: Wed, 17 Jun 2026 18:00:29 +0300 Subject: [PATCH 10/10] check the build command --- docs/modules/ROOT/pages/list-of-metrics.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/modules/ROOT/pages/list-of-metrics.adoc b/docs/modules/ROOT/pages/list-of-metrics.adoc index 875aa6a65..741480e47 100644 --- a/docs/modules/ROOT/pages/list-of-metrics.adoc +++ b/docs/modules/ROOT/pages/list-of-metrics.adoc @@ -2370,7 +2370,7 @@ Based on your latency tolerance in your business use case, you can define a thre .TCP [%collapsible] ==== -Protocol-specific TCP byte metrics are available only when Advanced Networking is enabled. `\{PROTOCOL}` is one of `MEMBER`, `CLIENT`, `WAN`, `REST`, or `MEMCACHE`; `WAN` includes all WAN protocol endpoints on the reporting member. +Protocol-specific TCP byte metrics are available only when Advanced Networking is enabled. `{PROTOCOL}` is one of `MEMBER`, `CLIENT`, `WAN`, `REST`, or `MEMCACHE`; `WAN` includes all WAN protocol endpoints on the reporting member. [cols="4,1,6a"] |=== @@ -2406,7 +2406,7 @@ Protocol-specific TCP byte metrics are available only when Advanced Networking i |bytes |Number of bytes received over all connections (active and closed) -|`tcp.bytesReceived.\{PROTOCOL}` +|`tcp.bytesReceived.{PROTOCOL}` |bytes |Number of bytes received over all connections for the protocol (Advanced Networking only) @@ -2414,7 +2414,7 @@ Protocol-specific TCP byte metrics are available only when Advanced Networking i |bytes |Number of bytes sent over all connections (active and closed) -|`tcp.bytesSend.\{PROTOCOL}` +|`tcp.bytesSend.{PROTOCOL}` |bytes |Number of bytes sent over all connections for the protocol (Advanced Networking only)