From 9a3092f5fa25f5a2fd7123a13b901c80d7fdadf4 Mon Sep 17 00:00:00 2001 From: Lucas Tortora Date: Thu, 23 Jan 2025 09:58:06 -0300 Subject: [PATCH 1/4] task(dex): Added tags to docs pertaining to node operation --- docs/content/developer/advanced/custom-indexer.mdx | 1 + docs/content/developer/advanced/graphql-migration.mdx | 1 + .../developer/exchange-integration/exchange-integration.mdx | 1 + docs/content/developer/getting-started/local-network.mdx | 2 +- docs/content/operator/archives.mdx | 1 + docs/content/operator/data-management.mdx | 1 + docs/content/operator/genesis.mdx | 1 + docs/content/operator/indexer-functions.mdx | 1 + docs/content/operator/iota-full-node/docker.mdx | 1 + .../operator/iota-full-node/monitoring-and-pruning.mdx | 1 + docs/content/operator/iota-full-node/overview.mdx | 1 + docs/content/operator/iota-full-node/source.mdx | 1 + docs/content/operator/observability.mdx | 1 + docs/content/operator/operator.mdx | 1 + docs/content/operator/snapshots.mdx | 1 + docs/content/operator/telemetry/iota-metrics.mdx | 1 + docs/content/operator/telemetry/iota-telemetry.mdx | 1 + docs/content/operator/telemetry/telemetry-subscribers.mdx | 1 + docs/content/operator/validator-committee.mdx | 1 + docs/content/operator/validator-config.mdx | 1 + docs/content/operator/validator-operation/ansible/README.mdx | 1 + docs/content/operator/validator-operation/docker/README.mdx | 1 + docs/content/operator/validator-operation/systemd/README.mdx | 1 + docs/content/operator/validator-operation/validator-tasks.mdx | 3 +++ docs/content/operator/validator-tools.mdx | 3 +++ docs/content/references/event-query-and-subscription.mdx | 1 + docs/content/references/exchange-integration-guide.mdx | 1 + docs/content/references/execution-architecture/adapter.mdx | 1 + .../references/execution-architecture/execution-layer.mdx | 1 + .../references/execution-architecture/iota-execution.mdx | 1 + docs/content/references/execution-architecture/natives.mdx | 1 + docs/content/references/iota-api/json-rpc-format.mdx | 1 + docs/content/references/iota-graphql.mdx | 1 + docs/content/tags.yml | 4 ++++ 34 files changed, 41 insertions(+), 1 deletion(-) diff --git a/docs/content/developer/advanced/custom-indexer.mdx b/docs/content/developer/advanced/custom-indexer.mdx index 6daea1505a6..d69ab462274 100644 --- a/docs/content/developer/advanced/custom-indexer.mdx +++ b/docs/content/developer/advanced/custom-indexer.mdx @@ -1,6 +1,7 @@ --- title: Custom Indexer description: You can build custom indexers using the IOTA micro-data ingestion framework. To create an indexer, you subscribe to a checkpoint stream with full checkpoint content. Establishing a custom indexer helps improve latency, allows pruning the data of your IOTA full node, and provides efficient assemblage of checkpoint data. +tags: [node-operation] --- import Quiz from '@site/src/components/Quiz'; diff --git a/docs/content/developer/advanced/graphql-migration.mdx b/docs/content/developer/advanced/graphql-migration.mdx index 2e7ecfab2cf..beeb053b947 100644 --- a/docs/content/developer/advanced/graphql-migration.mdx +++ b/docs/content/developer/advanced/graphql-migration.mdx @@ -1,5 +1,6 @@ --- title: Migrating to GraphQL +tags: [node-operation] --- import MigrateToGraphql from "../../_snippets/migrate-to-graphql.mdx"; diff --git a/docs/content/developer/exchange-integration/exchange-integration.mdx b/docs/content/developer/exchange-integration/exchange-integration.mdx index c7a43faf988..44e7cdfb396 100644 --- a/docs/content/developer/exchange-integration/exchange-integration.mdx +++ b/docs/content/developer/exchange-integration/exchange-integration.mdx @@ -1,6 +1,7 @@ --- title: IOTA Exchange Integration Guide description: Learn the primary tasks necessary to integrate IOTA, the token native to the IOTA network, into a cryptocurrency exchange. +tags: [node-operation] --- import Quiz from '@site/src/components/Quiz'; diff --git a/docs/content/developer/getting-started/local-network.mdx b/docs/content/developer/getting-started/local-network.mdx index 999595ef100..9d8e9b74e96 100644 --- a/docs/content/developer/getting-started/local-network.mdx +++ b/docs/content/developer/getting-started/local-network.mdx @@ -1,6 +1,6 @@ --- description: Guide to setting up and using a local IOTA network for development and testing. -tags: [ how-to, install, setup, cli, typescript, sdk, testing ] +tags: [ how-to, install, setup, cli, typescript, sdk, testing , node-operation] --- import Quiz from '@site/src/components/Quiz'; import questions from '/json/developer/getting-started/local-network.json'; diff --git a/docs/content/operator/archives.mdx b/docs/content/operator/archives.mdx index 79c426fb1fe..af4e0892306 100644 --- a/docs/content/operator/archives.mdx +++ b/docs/content/operator/archives.mdx @@ -1,4 +1,5 @@ --- +tags: [node-operator] title: IOTA Archives description: The archive is a historical record of all transactions on IOTA. Enable archiving on your full nodes as a best practice. --- diff --git a/docs/content/operator/data-management.mdx b/docs/content/operator/data-management.mdx index 19a123687e5..2c006bce04e 100644 --- a/docs/content/operator/data-management.mdx +++ b/docs/content/operator/data-management.mdx @@ -1,5 +1,6 @@ --- title: Data Management +tags: [node-operator] description: A high-level description of data management on the IOTA network that you can use to optimize your IOTA full node configuration. --- diff --git a/docs/content/operator/genesis.mdx b/docs/content/operator/genesis.mdx index 3abf6a21725..778fb3762ce 100644 --- a/docs/content/operator/genesis.mdx +++ b/docs/content/operator/genesis.mdx @@ -1,5 +1,6 @@ --- title: Genesis +tags: [node-operator] --- Genesis is the initial state of the IOTA blockchain. To launch a network, the initial committee of validators collaborate by providing their validator information (public keys, network addresses, and so on) to a shared workspace. After all of the initial validators have contributed their information, IOTA generates the initial, unsigned genesis checkpoint (checkpoint with sequence number 0) and each validator provides their signature. IOTA aggregates these signatures to form a _certificate_ on the genesis checkpoint. IOTA bundles this checkpoint, as well as the initial objects, together into a single genesis.blob file that is used to initialize the state when running the `iota-node` binary for both validators and full nodes. diff --git a/docs/content/operator/indexer-functions.mdx b/docs/content/operator/indexer-functions.mdx index 684c7b06d5d..5b6ffc0c5c7 100644 --- a/docs/content/operator/indexer-functions.mdx +++ b/docs/content/operator/indexer-functions.mdx @@ -1,5 +1,6 @@ --- title: IOTA Indexer +tags: [node-operator] description: IOTA Indexer is a node data service that serves data from the IOTA protocol, including both data directly generated from chain and derivative data. --- diff --git a/docs/content/operator/iota-full-node/docker.mdx b/docs/content/operator/iota-full-node/docker.mdx index ea9633ba18f..ab831fcf237 100644 --- a/docs/content/operator/iota-full-node/docker.mdx +++ b/docs/content/operator/iota-full-node/docker.mdx @@ -1,5 +1,6 @@ --- description: Learn how to set up an IOTA Full Node using docker. +tags: [node-operator] --- import Quiz from '@site/src/components/Quiz'; import questions from '/json/node-operators/iota-full-node/node-setup.json'; diff --git a/docs/content/operator/iota-full-node/monitoring-and-pruning.mdx b/docs/content/operator/iota-full-node/monitoring-and-pruning.mdx index 4414e18b3f9..2bdbec3ce56 100644 --- a/docs/content/operator/iota-full-node/monitoring-and-pruning.mdx +++ b/docs/content/operator/iota-full-node/monitoring-and-pruning.mdx @@ -1,5 +1,6 @@ --- description: How to monitor and Prune your IOTA Full Node. +tags: [node-operator] --- import Quiz from '@site/src/components/Quiz'; import questions from '/json/node-operators/iota-full-node/pruning.json'; diff --git a/docs/content/operator/iota-full-node/overview.mdx b/docs/content/operator/iota-full-node/overview.mdx index da11b6eb69d..4eab0dde292 100644 --- a/docs/content/operator/iota-full-node/overview.mdx +++ b/docs/content/operator/iota-full-node/overview.mdx @@ -1,6 +1,7 @@ --- title: Overview description: Operate an IOTA Full Node to validate blockchain activities, like transactions, checkpoints, and epoch changes. +tags: [node-operator] --- import Quiz from '@site/src/components/Quiz'; import BSTInfo from '../../_snippets/info-BST-2f1.mdx'; diff --git a/docs/content/operator/iota-full-node/source.mdx b/docs/content/operator/iota-full-node/source.mdx index 540fd28a15d..8d79e684c73 100644 --- a/docs/content/operator/iota-full-node/source.mdx +++ b/docs/content/operator/iota-full-node/source.mdx @@ -1,6 +1,7 @@ --- description: Learn how to set up an IOTA full node from source. title: Build From Source +tags: [node-operator] --- import Quiz from '@site/src/components/Quiz'; import questions from '/json/node-operators/iota-full-node/node-setup.json'; diff --git a/docs/content/operator/observability.mdx b/docs/content/operator/observability.mdx index 6467539eed0..6dcca70e081 100644 --- a/docs/content/operator/observability.mdx +++ b/docs/content/operator/observability.mdx @@ -1,6 +1,7 @@ --- title: Logging, Tracing, Metrics, and Observability sidebar_label: Observability +tags: [node-operator] draft: true --- diff --git a/docs/content/operator/operator.mdx b/docs/content/operator/operator.mdx index 6342e5b7948..c7b5445be10 100644 --- a/docs/content/operator/operator.mdx +++ b/docs/content/operator/operator.mdx @@ -1,5 +1,6 @@ --- title: Operator Guides +tags: [node-operator] description: Guides for operators on the IOTA network. Whether you are running a full node for your dApp or operating as a validator on the IOTA network, these guides help you set up your environment and operate your network. --- diff --git a/docs/content/operator/snapshots.mdx b/docs/content/operator/snapshots.mdx index 663fe90e3a6..5a80e091693 100644 --- a/docs/content/operator/snapshots.mdx +++ b/docs/content/operator/snapshots.mdx @@ -1,5 +1,6 @@ --- title: Database Snapshots +tags: [node-operator] description: Database snapshots of the IOTA network enable full node operators a way to bootstrap a full node without having to execute all the transactions that occurred after genesis. --- diff --git a/docs/content/operator/telemetry/iota-metrics.mdx b/docs/content/operator/telemetry/iota-metrics.mdx index 89d886e28b1..290c39ad2be 100644 --- a/docs/content/operator/telemetry/iota-metrics.mdx +++ b/docs/content/operator/telemetry/iota-metrics.mdx @@ -1,6 +1,7 @@ --- title: Metrics description: Prometheus-based metrics for the node. +tags: [node-operator] --- import Quiz from '@site/src/components/Quiz'; diff --git a/docs/content/operator/telemetry/iota-telemetry.mdx b/docs/content/operator/telemetry/iota-telemetry.mdx index 55a09b7e819..b36c4a66fd3 100644 --- a/docs/content/operator/telemetry/iota-telemetry.mdx +++ b/docs/content/operator/telemetry/iota-telemetry.mdx @@ -1,6 +1,7 @@ --- title: Telemetry description: Collects data from the node and sends it to Google Analytics for monitoring and analysis. +tags: [node-operator] --- import Quiz from '@site/src/components/Quiz'; diff --git a/docs/content/operator/telemetry/telemetry-subscribers.mdx b/docs/content/operator/telemetry/telemetry-subscribers.mdx index 8eadd361fe6..68005869e94 100644 --- a/docs/content/operator/telemetry/telemetry-subscribers.mdx +++ b/docs/content/operator/telemetry/telemetry-subscribers.mdx @@ -1,6 +1,7 @@ --- title: Telemetry Subscribers description: Allows for flexible logging and tracing of the node. +tags: [node-operator] --- import Quiz from '@site/src/components/Quiz'; diff --git a/docs/content/operator/validator-committee.mdx b/docs/content/operator/validator-committee.mdx index 85920009733..9004480e590 100644 --- a/docs/content/operator/validator-committee.mdx +++ b/docs/content/operator/validator-committee.mdx @@ -1,5 +1,6 @@ --- title: Validator Committee +tags: [node-operator] description: IOTA has a committee of validators to verify on-chain transactions. Epochs, quorums, transactions, _certificate_s, and consensus are touch points for this committee. --- diff --git a/docs/content/operator/validator-config.mdx b/docs/content/operator/validator-config.mdx index 34032f2423a..1cad8709ade 100644 --- a/docs/content/operator/validator-config.mdx +++ b/docs/content/operator/validator-config.mdx @@ -1,5 +1,6 @@ --- title: IOTA Validator Node Configuration +tags: [node-operator] description: Learn how to set up, configure, and manage an IOTA Validator node, including staking, reference gas price, and tallying rules. --- diff --git a/docs/content/operator/validator-operation/ansible/README.mdx b/docs/content/operator/validator-operation/ansible/README.mdx index 29c76e118c2..bbe2a964e31 100644 --- a/docs/content/operator/validator-operation/ansible/README.mdx +++ b/docs/content/operator/validator-operation/ansible/README.mdx @@ -1,5 +1,6 @@ --- sidebar_label: Ansible Configuration +tags: [node-operator] --- import Configuration from './../../../../../nre/ansible/README.md'; diff --git a/docs/content/operator/validator-operation/docker/README.mdx b/docs/content/operator/validator-operation/docker/README.mdx index 08351c3e676..8f17fba8ac6 100644 --- a/docs/content/operator/validator-operation/docker/README.mdx +++ b/docs/content/operator/validator-operation/docker/README.mdx @@ -1,5 +1,6 @@ --- sidebar_label: Docker Configuration +tags: [node-operator] --- import Configuration from './../../../../../nre/docker/README.md'; diff --git a/docs/content/operator/validator-operation/systemd/README.mdx b/docs/content/operator/validator-operation/systemd/README.mdx index 57d80709cf9..d9e6d6efdd7 100644 --- a/docs/content/operator/validator-operation/systemd/README.mdx +++ b/docs/content/operator/validator-operation/systemd/README.mdx @@ -1,5 +1,6 @@ --- sidebar_label: Systemd Configuration +tags: [node-operator] --- import Configuration from './../../../../../nre/systemd/README.md'; diff --git a/docs/content/operator/validator-operation/validator-tasks.mdx b/docs/content/operator/validator-operation/validator-tasks.mdx index 7ea7fc905c7..8cfb56e1325 100644 --- a/docs/content/operator/validator-operation/validator-tasks.mdx +++ b/docs/content/operator/validator-operation/validator-tasks.mdx @@ -1,3 +1,6 @@ +--- +tags: [node-operator] +--- import ValidatorTasks from './../../../../nre/validator_tasks.md'; import Quiz from '@site/src/components/Quiz'; import questions from '/json/node-operators/validator-tasks.json'; diff --git a/docs/content/operator/validator-tools.mdx b/docs/content/operator/validator-tools.mdx index 7c567f20821..d0f636ec9c9 100644 --- a/docs/content/operator/validator-tools.mdx +++ b/docs/content/operator/validator-tools.mdx @@ -1,3 +1,6 @@ +--- +tags: [node-operator] +--- import ValidatorTools from './../../../nre/validator_tool.md'; import Quiz from '@site/src/components/Quiz'; import questions from '/json/node-operators/validator-tools.json'; diff --git a/docs/content/references/event-query-and-subscription.mdx b/docs/content/references/event-query-and-subscription.mdx index b6cdf59746e..2afd08a2350 100644 --- a/docs/content/references/event-query-and-subscription.mdx +++ b/docs/content/references/event-query-and-subscription.mdx @@ -1,5 +1,6 @@ --- title: Event Query and Subscription +tags: [node-operation] --- IOTA full nodes support publish/subscribe using JSON-RPC notifications via the WebSocket API. You can use this service with IOTA client to filter and subscribe to a real-time event stream generated from Move or from the IOTA network. diff --git a/docs/content/references/exchange-integration-guide.mdx b/docs/content/references/exchange-integration-guide.mdx index 2f6885c4a12..807f7275611 100644 --- a/docs/content/references/exchange-integration-guide.mdx +++ b/docs/content/references/exchange-integration-guide.mdx @@ -2,6 +2,7 @@ title: Exchange Integration Guide sidebar_label: Exchange Integration slug: /exchange-integration-guide +tags: [node-operation] --- This topic describes how to integrate IOTA, the token native to the IOTA network, into a cryptocurrency exchange. The specific requirements and processes to implement an integration vary between exchanges. Rather than provide a step-by-step guide, this topic provides information about the primary tasks necessary to complete an integration. After the guidance about how to configure an integration, you can also find information and code samples related to staking on the IOTA network. diff --git a/docs/content/references/execution-architecture/adapter.mdx b/docs/content/references/execution-architecture/adapter.mdx index 22459fd4a05..fabb43c4989 100644 --- a/docs/content/references/execution-architecture/adapter.mdx +++ b/docs/content/references/execution-architecture/adapter.mdx @@ -1,5 +1,6 @@ --- title: Adapter +tags: [node-operator] description: This document describes the architectural approach and execution flow for the adapter and related components. --- import ThemedImage from '@theme/ThemedImage'; diff --git a/docs/content/references/execution-architecture/execution-layer.mdx b/docs/content/references/execution-architecture/execution-layer.mdx index c0f04f857b3..468449658be 100644 --- a/docs/content/references/execution-architecture/execution-layer.mdx +++ b/docs/content/references/execution-architecture/execution-layer.mdx @@ -1,5 +1,6 @@ --- title: IOTA Execution Layer +tags: [node-operator] description: This document describes the architectural approach for iota execution layer. --- diff --git a/docs/content/references/execution-architecture/iota-execution.mdx b/docs/content/references/execution-architecture/iota-execution.mdx index 24896c30caf..01356cd545b 100644 --- a/docs/content/references/execution-architecture/iota-execution.mdx +++ b/docs/content/references/execution-architecture/iota-execution.mdx @@ -1,5 +1,6 @@ --- title: IOTA Execution Crate +tags: [node-operator] description: This document describes the architectural approach for iota execution crate. --- diff --git a/docs/content/references/execution-architecture/natives.mdx b/docs/content/references/execution-architecture/natives.mdx index e49c37329bb..05c2810110f 100644 --- a/docs/content/references/execution-architecture/natives.mdx +++ b/docs/content/references/execution-architecture/natives.mdx @@ -1,5 +1,6 @@ --- title: Natives & Object Runtime +tags: [node-operator] description: This document describes the object runtime and native functions flow. --- import ThemedImage from '@theme/ThemedImage'; diff --git a/docs/content/references/iota-api/json-rpc-format.mdx b/docs/content/references/iota-api/json-rpc-format.mdx index d18e5425666..3df8d139d8b 100644 --- a/docs/content/references/iota-api/json-rpc-format.mdx +++ b/docs/content/references/iota-api/json-rpc-format.mdx @@ -1,5 +1,6 @@ --- title: JSON-RPC API Format +tags: [node-operation] --- _IOTAJSON_ is a JSON-based format with restrictions that allow IOTA to align JSON inputs more closely with Move call arguments. diff --git a/docs/content/references/iota-graphql.mdx b/docs/content/references/iota-graphql.mdx index cefbb5b5fc2..ac6af8d3ad6 100644 --- a/docs/content/references/iota-graphql.mdx +++ b/docs/content/references/iota-graphql.mdx @@ -1,5 +1,6 @@ --- title: GraphQL for IOTA RPC +tags: [node-operation] description: GraphQL is a public service for the IOTA RPC that enables you to efficiently interact with the IOTA network. --- diff --git a/docs/content/tags.yml b/docs/content/tags.yml index 0edec61ed3b..e79873f2d88 100644 --- a/docs/content/tags.yml +++ b/docs/content/tags.yml @@ -251,3 +251,7 @@ setup: testing: label: Testing description: Process of evaluating code. + +node-operation: + label: Node Operation + description: Node Operation \ No newline at end of file From 2930489912e06a987117d232e59c2c71de926790 Mon Sep 17 00:00:00 2001 From: Lucas Tortora Date: Thu, 23 Jan 2025 09:59:25 -0300 Subject: [PATCH 2/4] add more tags --- docs/content/references/iota-api/rpc-best-practices.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/content/references/iota-api/rpc-best-practices.mdx b/docs/content/references/iota-api/rpc-best-practices.mdx index cae50a7227b..ee20570a766 100644 --- a/docs/content/references/iota-api/rpc-best-practices.mdx +++ b/docs/content/references/iota-api/rpc-best-practices.mdx @@ -1,5 +1,6 @@ --- title: RPC Best Practices +tags: [node-operation] --- import HighTrafficRpcs from "../../_snippets/info-high-traffic.mdx"; From 6033727aaf69994bc14612220921c1433ccc0585 Mon Sep 17 00:00:00 2001 From: Lucas Tortora Date: Thu, 23 Jan 2025 10:23:41 -0300 Subject: [PATCH 3/4] dprint --- docs/content/tags.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/tags.yml b/docs/content/tags.yml index e79873f2d88..ff2d3f375e9 100644 --- a/docs/content/tags.yml +++ b/docs/content/tags.yml @@ -252,6 +252,6 @@ testing: label: Testing description: Process of evaluating code. -node-operation: +node-operation: label: Node Operation - description: Node Operation \ No newline at end of file + description: Node Operation From 887d2cd2ec044e9931a775dc0e9a411ed1c0125a Mon Sep 17 00:00:00 2001 From: Lucas Tortora Date: Thu, 23 Jan 2025 10:36:01 -0300 Subject: [PATCH 4/4] fix(devx): format tags --- docs/content/operator/archives.mdx | 2 +- docs/content/operator/data-management.mdx | 2 +- docs/content/operator/genesis.mdx | 2 +- docs/content/operator/indexer-functions.mdx | 2 +- docs/content/operator/iota-full-node/docker.mdx | 2 +- docs/content/operator/iota-full-node/monitoring-and-pruning.mdx | 2 +- docs/content/operator/iota-full-node/overview.mdx | 2 +- docs/content/operator/iota-full-node/source.mdx | 2 +- docs/content/operator/observability.mdx | 2 +- docs/content/operator/operator.mdx | 2 +- docs/content/operator/snapshots.mdx | 2 +- docs/content/operator/telemetry/iota-metrics.mdx | 2 +- docs/content/operator/telemetry/iota-telemetry.mdx | 2 +- docs/content/operator/telemetry/telemetry-subscribers.mdx | 2 +- docs/content/operator/validator-committee.mdx | 2 +- docs/content/operator/validator-config.mdx | 2 +- docs/content/operator/validator-operation/ansible/README.mdx | 2 +- docs/content/operator/validator-operation/docker/README.mdx | 2 +- docs/content/operator/validator-operation/systemd/README.mdx | 2 +- docs/content/operator/validator-operation/validator-tasks.mdx | 2 +- docs/content/operator/validator-tools.mdx | 2 +- docs/content/references/execution-architecture/adapter.mdx | 2 +- .../references/execution-architecture/execution-layer.mdx | 2 +- .../references/execution-architecture/iota-execution.mdx | 2 +- docs/content/references/execution-architecture/natives.mdx | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/docs/content/operator/archives.mdx b/docs/content/operator/archives.mdx index af4e0892306..c324ab036a5 100644 --- a/docs/content/operator/archives.mdx +++ b/docs/content/operator/archives.mdx @@ -1,7 +1,7 @@ --- -tags: [node-operator] title: IOTA Archives description: The archive is a historical record of all transactions on IOTA. Enable archiving on your full nodes as a best practice. +tags: [node-operation] --- import Quiz from '@site/src/components/Quiz'; diff --git a/docs/content/operator/data-management.mdx b/docs/content/operator/data-management.mdx index 2c006bce04e..0318061b921 100644 --- a/docs/content/operator/data-management.mdx +++ b/docs/content/operator/data-management.mdx @@ -1,6 +1,6 @@ --- title: Data Management -tags: [node-operator] +tags: [node-operation] description: A high-level description of data management on the IOTA network that you can use to optimize your IOTA full node configuration. --- diff --git a/docs/content/operator/genesis.mdx b/docs/content/operator/genesis.mdx index 778fb3762ce..06f3a3b0e2a 100644 --- a/docs/content/operator/genesis.mdx +++ b/docs/content/operator/genesis.mdx @@ -1,6 +1,6 @@ --- title: Genesis -tags: [node-operator] +tags: [node-operation] --- Genesis is the initial state of the IOTA blockchain. To launch a network, the initial committee of validators collaborate by providing their validator information (public keys, network addresses, and so on) to a shared workspace. After all of the initial validators have contributed their information, IOTA generates the initial, unsigned genesis checkpoint (checkpoint with sequence number 0) and each validator provides their signature. IOTA aggregates these signatures to form a _certificate_ on the genesis checkpoint. IOTA bundles this checkpoint, as well as the initial objects, together into a single genesis.blob file that is used to initialize the state when running the `iota-node` binary for both validators and full nodes. diff --git a/docs/content/operator/indexer-functions.mdx b/docs/content/operator/indexer-functions.mdx index 5b6ffc0c5c7..8e7dc5c7672 100644 --- a/docs/content/operator/indexer-functions.mdx +++ b/docs/content/operator/indexer-functions.mdx @@ -1,6 +1,6 @@ --- title: IOTA Indexer -tags: [node-operator] +tags: [node-operation] description: IOTA Indexer is a node data service that serves data from the IOTA protocol, including both data directly generated from chain and derivative data. --- diff --git a/docs/content/operator/iota-full-node/docker.mdx b/docs/content/operator/iota-full-node/docker.mdx index ab831fcf237..cc93f419475 100644 --- a/docs/content/operator/iota-full-node/docker.mdx +++ b/docs/content/operator/iota-full-node/docker.mdx @@ -1,6 +1,6 @@ --- description: Learn how to set up an IOTA Full Node using docker. -tags: [node-operator] +tags: [node-operation] --- import Quiz from '@site/src/components/Quiz'; import questions from '/json/node-operators/iota-full-node/node-setup.json'; diff --git a/docs/content/operator/iota-full-node/monitoring-and-pruning.mdx b/docs/content/operator/iota-full-node/monitoring-and-pruning.mdx index 2bdbec3ce56..5ac22ab4873 100644 --- a/docs/content/operator/iota-full-node/monitoring-and-pruning.mdx +++ b/docs/content/operator/iota-full-node/monitoring-and-pruning.mdx @@ -1,6 +1,6 @@ --- description: How to monitor and Prune your IOTA Full Node. -tags: [node-operator] +tags: [node-operation] --- import Quiz from '@site/src/components/Quiz'; import questions from '/json/node-operators/iota-full-node/pruning.json'; diff --git a/docs/content/operator/iota-full-node/overview.mdx b/docs/content/operator/iota-full-node/overview.mdx index 4eab0dde292..d38c46cf3fa 100644 --- a/docs/content/operator/iota-full-node/overview.mdx +++ b/docs/content/operator/iota-full-node/overview.mdx @@ -1,7 +1,7 @@ --- title: Overview description: Operate an IOTA Full Node to validate blockchain activities, like transactions, checkpoints, and epoch changes. -tags: [node-operator] +tags: [node-operation] --- import Quiz from '@site/src/components/Quiz'; import BSTInfo from '../../_snippets/info-BST-2f1.mdx'; diff --git a/docs/content/operator/iota-full-node/source.mdx b/docs/content/operator/iota-full-node/source.mdx index 8d79e684c73..952c746a936 100644 --- a/docs/content/operator/iota-full-node/source.mdx +++ b/docs/content/operator/iota-full-node/source.mdx @@ -1,7 +1,7 @@ --- description: Learn how to set up an IOTA full node from source. title: Build From Source -tags: [node-operator] +tags: [node-operation] --- import Quiz from '@site/src/components/Quiz'; import questions from '/json/node-operators/iota-full-node/node-setup.json'; diff --git a/docs/content/operator/observability.mdx b/docs/content/operator/observability.mdx index 6dcca70e081..02a95df88c7 100644 --- a/docs/content/operator/observability.mdx +++ b/docs/content/operator/observability.mdx @@ -1,7 +1,7 @@ --- title: Logging, Tracing, Metrics, and Observability sidebar_label: Observability -tags: [node-operator] +tags: [node-operation] draft: true --- diff --git a/docs/content/operator/operator.mdx b/docs/content/operator/operator.mdx index c7b5445be10..2600d846bd5 100644 --- a/docs/content/operator/operator.mdx +++ b/docs/content/operator/operator.mdx @@ -1,6 +1,6 @@ --- title: Operator Guides -tags: [node-operator] +tags: [node-operation] description: Guides for operators on the IOTA network. Whether you are running a full node for your dApp or operating as a validator on the IOTA network, these guides help you set up your environment and operate your network. --- diff --git a/docs/content/operator/snapshots.mdx b/docs/content/operator/snapshots.mdx index 5a80e091693..90c1ef81e6e 100644 --- a/docs/content/operator/snapshots.mdx +++ b/docs/content/operator/snapshots.mdx @@ -1,6 +1,6 @@ --- title: Database Snapshots -tags: [node-operator] +tags: [node-operation] description: Database snapshots of the IOTA network enable full node operators a way to bootstrap a full node without having to execute all the transactions that occurred after genesis. --- diff --git a/docs/content/operator/telemetry/iota-metrics.mdx b/docs/content/operator/telemetry/iota-metrics.mdx index 290c39ad2be..e389978c241 100644 --- a/docs/content/operator/telemetry/iota-metrics.mdx +++ b/docs/content/operator/telemetry/iota-metrics.mdx @@ -1,7 +1,7 @@ --- title: Metrics description: Prometheus-based metrics for the node. -tags: [node-operator] +tags: [node-operation] --- import Quiz from '@site/src/components/Quiz'; diff --git a/docs/content/operator/telemetry/iota-telemetry.mdx b/docs/content/operator/telemetry/iota-telemetry.mdx index b36c4a66fd3..0e145126ec3 100644 --- a/docs/content/operator/telemetry/iota-telemetry.mdx +++ b/docs/content/operator/telemetry/iota-telemetry.mdx @@ -1,7 +1,7 @@ --- title: Telemetry description: Collects data from the node and sends it to Google Analytics for monitoring and analysis. -tags: [node-operator] +tags: [node-operation] --- import Quiz from '@site/src/components/Quiz'; diff --git a/docs/content/operator/telemetry/telemetry-subscribers.mdx b/docs/content/operator/telemetry/telemetry-subscribers.mdx index 68005869e94..3f0d5bee3f8 100644 --- a/docs/content/operator/telemetry/telemetry-subscribers.mdx +++ b/docs/content/operator/telemetry/telemetry-subscribers.mdx @@ -1,7 +1,7 @@ --- title: Telemetry Subscribers description: Allows for flexible logging and tracing of the node. -tags: [node-operator] +tags: [node-operation] --- import Quiz from '@site/src/components/Quiz'; diff --git a/docs/content/operator/validator-committee.mdx b/docs/content/operator/validator-committee.mdx index 9004480e590..79458995152 100644 --- a/docs/content/operator/validator-committee.mdx +++ b/docs/content/operator/validator-committee.mdx @@ -1,6 +1,6 @@ --- title: Validator Committee -tags: [node-operator] +tags: [node-operation] description: IOTA has a committee of validators to verify on-chain transactions. Epochs, quorums, transactions, _certificate_s, and consensus are touch points for this committee. --- diff --git a/docs/content/operator/validator-config.mdx b/docs/content/operator/validator-config.mdx index 1cad8709ade..00b33663943 100644 --- a/docs/content/operator/validator-config.mdx +++ b/docs/content/operator/validator-config.mdx @@ -1,6 +1,6 @@ --- title: IOTA Validator Node Configuration -tags: [node-operator] +tags: [node-operation] description: Learn how to set up, configure, and manage an IOTA Validator node, including staking, reference gas price, and tallying rules. --- diff --git a/docs/content/operator/validator-operation/ansible/README.mdx b/docs/content/operator/validator-operation/ansible/README.mdx index bbe2a964e31..f47ac3f1135 100644 --- a/docs/content/operator/validator-operation/ansible/README.mdx +++ b/docs/content/operator/validator-operation/ansible/README.mdx @@ -1,6 +1,6 @@ --- sidebar_label: Ansible Configuration -tags: [node-operator] +tags: [node-operation] --- import Configuration from './../../../../../nre/ansible/README.md'; diff --git a/docs/content/operator/validator-operation/docker/README.mdx b/docs/content/operator/validator-operation/docker/README.mdx index 8f17fba8ac6..43dbaa6e4af 100644 --- a/docs/content/operator/validator-operation/docker/README.mdx +++ b/docs/content/operator/validator-operation/docker/README.mdx @@ -1,6 +1,6 @@ --- sidebar_label: Docker Configuration -tags: [node-operator] +tags: [node-operation] --- import Configuration from './../../../../../nre/docker/README.md'; diff --git a/docs/content/operator/validator-operation/systemd/README.mdx b/docs/content/operator/validator-operation/systemd/README.mdx index d9e6d6efdd7..711db97fd61 100644 --- a/docs/content/operator/validator-operation/systemd/README.mdx +++ b/docs/content/operator/validator-operation/systemd/README.mdx @@ -1,6 +1,6 @@ --- sidebar_label: Systemd Configuration -tags: [node-operator] +tags: [node-operation] --- import Configuration from './../../../../../nre/systemd/README.md'; diff --git a/docs/content/operator/validator-operation/validator-tasks.mdx b/docs/content/operator/validator-operation/validator-tasks.mdx index 8cfb56e1325..b528744bf21 100644 --- a/docs/content/operator/validator-operation/validator-tasks.mdx +++ b/docs/content/operator/validator-operation/validator-tasks.mdx @@ -1,5 +1,5 @@ --- -tags: [node-operator] +tags: [node-operation] --- import ValidatorTasks from './../../../../nre/validator_tasks.md'; import Quiz from '@site/src/components/Quiz'; diff --git a/docs/content/operator/validator-tools.mdx b/docs/content/operator/validator-tools.mdx index d0f636ec9c9..9452575fb79 100644 --- a/docs/content/operator/validator-tools.mdx +++ b/docs/content/operator/validator-tools.mdx @@ -1,5 +1,5 @@ --- -tags: [node-operator] +tags: [node-operation] --- import ValidatorTools from './../../../nre/validator_tool.md'; import Quiz from '@site/src/components/Quiz'; diff --git a/docs/content/references/execution-architecture/adapter.mdx b/docs/content/references/execution-architecture/adapter.mdx index fabb43c4989..ddcb90bdb67 100644 --- a/docs/content/references/execution-architecture/adapter.mdx +++ b/docs/content/references/execution-architecture/adapter.mdx @@ -1,6 +1,6 @@ --- title: Adapter -tags: [node-operator] +tags: [node-operation] description: This document describes the architectural approach and execution flow for the adapter and related components. --- import ThemedImage from '@theme/ThemedImage'; diff --git a/docs/content/references/execution-architecture/execution-layer.mdx b/docs/content/references/execution-architecture/execution-layer.mdx index 468449658be..7325cfe9935 100644 --- a/docs/content/references/execution-architecture/execution-layer.mdx +++ b/docs/content/references/execution-architecture/execution-layer.mdx @@ -1,6 +1,6 @@ --- title: IOTA Execution Layer -tags: [node-operator] +tags: [node-operation] description: This document describes the architectural approach for iota execution layer. --- diff --git a/docs/content/references/execution-architecture/iota-execution.mdx b/docs/content/references/execution-architecture/iota-execution.mdx index 01356cd545b..48a2906b428 100644 --- a/docs/content/references/execution-architecture/iota-execution.mdx +++ b/docs/content/references/execution-architecture/iota-execution.mdx @@ -1,6 +1,6 @@ --- title: IOTA Execution Crate -tags: [node-operator] +tags: [node-operation] description: This document describes the architectural approach for iota execution crate. --- diff --git a/docs/content/references/execution-architecture/natives.mdx b/docs/content/references/execution-architecture/natives.mdx index 05c2810110f..582cca61df4 100644 --- a/docs/content/references/execution-architecture/natives.mdx +++ b/docs/content/references/execution-architecture/natives.mdx @@ -1,6 +1,6 @@ --- title: Natives & Object Runtime -tags: [node-operator] +tags: [node-operation] description: This document describes the object runtime and native functions flow. --- import ThemedImage from '@theme/ThemedImage';