mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-19 19:25:51 +00:00
[DOC] DEV-99: clarified load factor for rest and rippled
This commit is contained in:
@@ -6542,12 +6542,12 @@ The `info` object may have some arrangement of the following fields:
|
|||||||
| build_version | String | The version number of the running `rippled` version. |
|
| build_version | String | The version number of the running `rippled` version. |
|
||||||
| complete_ledgers | String | Range expression indicating the sequence numbers of the ledger versions the local rippled has in its database. It is possible to be a disjoint sequence, e.g. "2500-5000,32570-7695432". |
|
| complete_ledgers | String | Range expression indicating the sequence numbers of the ledger versions the local rippled has in its database. It is possible to be a disjoint sequence, e.g. "2500-5000,32570-7695432". |
|
||||||
| hostid | String | On an admin request, returns the hostname of the server running the `rippled` instance; otherwise, returns a unique four letter word. |
|
| hostid | String | On an admin request, returns the hostname of the server running the `rippled` instance; otherwise, returns a unique four letter word. |
|
||||||
| io_latency_ms | Number | Amount of time spent waiting for I/O operations to be performed, in milliseconds. If this number is not very, very low, then the `rippled` server is probably having serious load issues. |
|
| io\_latency\_ms | Number | Amount of time spent waiting for I/O operations to be performed, in milliseconds. If this number is not very, very low, then the `rippled` server is probably having serious load issues. |
|
||||||
| last_close | Object | Information about the last time the server closed a ledger, including the amount of time it took to reach a consensus and the number of trusted validators participating. |
|
| last_close | Object | Information about the last time the server closed a ledger, including the amount of time it took to reach a consensus and the number of trusted validators participating. |
|
||||||
| load | Object | *Admin only* Detailed information about the current load state of the server |
|
| load | Object | *Admin only* Detailed information about the current load state of the server |
|
||||||
| load.job_types | Array | *Admin only* Information about the rate of different types of jobs being performed by the server and how much time it spends on each. |
|
| load.job\_types | Array | *Admin only* Information about the rate of different types of jobs being performed by the server and how much time it spends on each. |
|
||||||
| load.threads | Number | *Admin only* The number of threads in the server's main job pool, performing various Ripple Network operations. |
|
| load.threads | Number | *Admin only* The number of threads in the server's main job pool, performing various Ripple Network operations. |
|
||||||
| load_factor | Number | The load factor the server is currently enforcing, which affects transaction fees. The load factor is determined by the highest of the individual server's load factor, cluster's load factor, and the overall network's load factor. See [Calculating Transaction Fees](https://ripple.com/wiki/Calculating_the_Transaction_Fee) for more details. |
|
| load\_factor | Number | The load factor the server is currently enforcing, as a multiplier on the base transaction fee. The load factor is determined by the highest of the individual server's load factor, cluster's load factor, and the overall network's load factor. See [Calculating Transaction Fees](https://ripple.com/wiki/Calculating_the_Transaction_Fee) for more details. |
|
||||||
| peers | Number | How many other `rippled` servers the node is currently connected to. |
|
| peers | Number | How many other `rippled` servers the node is currently connected to. |
|
||||||
| pubkey_node | String | Public key used to verify this node for internal communications; this key is automatically generated by the server the first time it starts up. (If deleted, the node can just create a new pair of keys.) |
|
| pubkey_node | String | Public key used to verify this node for internal communications; this key is automatically generated by the server the first time it starts up. (If deleted, the node can just create a new pair of keys.) |
|
||||||
| pubkey_validator | String | *Admin only* Public key used by this node to sign ledger validations; . |
|
| pubkey_validator | String | *Admin only* Public key used by this node to sign ledger validations; . |
|
||||||
@@ -6687,8 +6687,8 @@ The `state` object may have some arrangement of the following fields:
|
|||||||
| load | Object | *Admin only* Detailed information about the current load state of the server |
|
| load | Object | *Admin only* Detailed information about the current load state of the server |
|
||||||
| load.job_types | Array | *Admin only* Information about the rate of different types of jobs being performed by the server and how much time it spends on each. |
|
| load.job_types | Array | *Admin only* Information about the rate of different types of jobs being performed by the server and how much time it spends on each. |
|
||||||
| load.threads | Number | *Admin only* The number of threads in the server's main job pool, performing various Ripple Network operations. |
|
| load.threads | Number | *Admin only* The number of threads in the server's main job pool, performing various Ripple Network operations. |
|
||||||
| load_base | Number | This amount of server load is the baseline that is used to decide how much to charge in transaction fees; if the `load_factor` is equal to the `load_base` then only the base fee is enforced; if the `load_factor` is double the `load_base` then transaction fees are doubled. See [Calculating Transaction Fees](https://ripple.com/wiki/Calculating_the_Transaction_Fee) for more details. |
|
| load\_base | Number | This amount of server load is the baseline that is used to decide how much to charge in transaction fees; if the `load_factor` is equal to the `load_base` then only the base fee is enforced; if the `load_factor` is double the `load_base` then transaction fees are doubled. See [Calculating Transaction Fees](https://ripple.com/wiki/Calculating_the_Transaction_Fee) for more details. |
|
||||||
| load_factor | Number | The load factor the server is currently enforcing, which affects transaction fees. The load factor is determined by the highest of the individual server's load factor, cluster's load factor, and the overall network's load factor. |
|
| load\_factor | Number | The load factor the server is currently enforcing. The ratio between this value and the load\_base determines the multiplier for transaction fees. The load factor is determined by the highest of the individual server's load factor, cluster's load factor, and the overall network's load factor. |
|
||||||
| peers | Number | How many other `rippled` servers the node is currently connected to. |
|
| peers | Number | How many other `rippled` servers the node is currently connected to. |
|
||||||
| pubkey_node | String | Public key used by this server (along with the corresponding private key) for secure communications between nodes. This key pair is automatically created and stored in rippled's local database the first time it starts up; if lost or deleted, a new key pair can be generated with no ill effects. |
|
| pubkey_node | String | Public key used by this server (along with the corresponding private key) for secure communications between nodes. This key pair is automatically created and stored in rippled's local database the first time it starts up; if lost or deleted, a new key pair can be generated with no ill effects. |
|
||||||
| pubkey_validator | String | *Admin only* Public key used by this server (along with the corresponding private key) to sign proposed ledgers for validation. |
|
| pubkey_validator | String | *Admin only* Public key used by this server (along with the corresponding private key) to sign proposed ledgers for validation. |
|
||||||
|
|||||||
@@ -1979,7 +1979,7 @@ The `rippled_server_status` object may have any of the following fields:
|
|||||||
| last\_close | Object | Some information about the most recently-closed ledger |
|
| last\_close | Object | Some information about the most recently-closed ledger |
|
||||||
| last\_close.converge\_time\_s | Number | How many seconds it took to reach consensus on the this ledger version |
|
| last\_close.converge\_time\_s | Number | How many seconds it took to reach consensus on the this ledger version |
|
||||||
| last\_close.proposers | Number | How many trusted validators were involved in the consensus process for this ledger version |
|
| last\_close.proposers | Number | How many trusted validators were involved in the consensus process for this ledger version |
|
||||||
| load\_factor | Number | The load factor the server is currently enforcing, which affects transaction fees. The load factor is determined by the highest of the individual server’s load factor, cluster’s load factor, and the overall network’s load factor. |
|
| load\_factor | Number | The load factor the server is currently enforcing, as a multiplier for the base transaction fee. The load factor is determined by the highest of the individual server’s load factor, cluster’s load factor, and the overall network’s load factor. |
|
||||||
| peers | Number | How many other `rippled` servers this server is connected to |
|
| peers | Number | How many other `rippled` servers this server is connected to |
|
||||||
| pubkey_node | String | Public key used to verify this node for internal communications; this key is automatically generated by the server the first time it starts up. (If deleted, the node can just create a new pair of keys.) |
|
| pubkey_node | String | Public key used to verify this node for internal communications; this key is automatically generated by the server the first time it starts up. (If deleted, the node can just create a new pair of keys.) |
|
||||||
| server_state | String | A string indicating to what extent the server is participating in the network. See [Possible Server States in the rippled documentation](rippled-apis#possible-server-states) for more details. |
|
| server_state | String | A string indicating to what extent the server is participating in the network. See [Possible Server States in the rippled documentation](rippled-apis#possible-server-states) for more details. |
|
||||||
|
|||||||
Reference in New Issue
Block a user