Skip to content

Commit 291dd3b

Browse files
committed
fix(connector-corda): fix build broken by operationId rename
Also: Update the readmes of other packages where the old name of the operation/endpoint was still being used as well. Signed-off-by: Peter Somogyvari <[email protected]>
1 parent 119a23a commit 291dd3b

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

packages/cactus-cmd-api-server/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ This class creates a prometheus exporter, which scrapes the total Cactus node co
363363
The prometheus exporter object is initialized in the `ApiServer` class constructor itself, so instantiating the object of the `ApiServer` class, gives access to the exporter object.
364364
You can also initialize the prometheus exporter object seperately and then pass it to the `IApiServerConstructorOptions` interface for `ApiServer` constructor.
365365

366-
`getPrometheusExporterMetricsV1` function returns the prometheus exporter metrics, currently displaying the total plugins imported, which currently refreshes to match the plugin count, everytime `setTotalPluginImports` method is called.
366+
`getPrometheusMetricsV1` function returns the prometheus exporter metrics, currently displaying the total plugins imported, which currently refreshes to match the plugin count, everytime `setTotalPluginImports` method is called.
367367

368368
### Prometheus Integration
369369
To use Prometheus with this exporter make sure to install [Prometheus main component](https://prometheus.io/download/).

packages/cactus-plugin-consortium-manual/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This class creates a prometheus exporter, which scrapes the total Cactus node co
77
The prometheus exporter object is initialized in the `PluginConsortiumManual` class constructor itself, so instantiating the object of the `PluginConsortiumManual` class, gives access to the exporter object.
88
You can also initialize the prometheus exporter object seperately and then pass it to the `IPluginConsortiumManualOptions` interface for `PluginConsortiumManual` constructor.
99

10-
`getPrometheusExporterMetricsV1` function returns the prometheus exporter metrics, currently displaying the total cactus node count, which currently refreshes to match the node count in the consortium, everytime `updateMetricNodeCount` method of the `PluginConsortiumManual` class is called.
10+
`getPrometheusMetricsV1` function returns the prometheus exporter metrics, currently displaying the total cactus node count, which currently refreshes to match the node count in the consortium, everytime `updateMetricNodeCount` method of the `PluginConsortiumManual` class is called.
1111

1212
### Prometheus Integration
1313
To use Prometheus with this exporter make sure to install [Prometheus main component](https://prometheus.io/download/).

packages/cactus-plugin-keychain-memory/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This class creates a prometheus exporter, which scrapes the transactions (total
99
The prometheus exporter object is initialized in the `PluginKeychainMemory` class constructor itself, so instantiating the object of the `PluginKeychainMemory` class, gives access to the exporter object.
1010
You can also initialize the prometheus exporter object seperately and then pass it to the `IPluginKeychainMemoryOptions` interface for `PluginKeychainMemory` constructor.
1111

12-
`getPrometheusExporterMetricsV1` function returns the prometheus exporter metrics, currently displaying the total key count, which currently updates everytime a new key is added/removed from the list of total keys.
12+
`getPrometheusMetricsV1` function returns the prometheus exporter metrics, currently displaying the total key count, which currently updates everytime a new key is added/removed from the list of total keys.
1313

1414
### Prometheus Integration
1515
To use Prometheus with this exporter make sure to install [Prometheus main component](https://prometheus.io/download/).

packages/cactus-plugin-keychain-vault/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This class creates a prometheus exporter, which scrapes the transactions (total
99
The prometheus exporter object is initialized in the `PluginKeychainVault` class constructor itself, so instantiating the object of the `PluginKeychainVault` class, gives access to the exporter object.
1010
You can also initialize the prometheus exporter object seperately and then pass it to the `IPluginKeychainVaultOptions` interface for `PluginKeychainVault` constructor.
1111

12-
`getPrometheusExporterMetricsV1` function returns the prometheus exporter metrics, currently displaying the total key count, which currently increments everytime the `set()` and `delete()` method of the `PluginKeychainVault` class is called.
12+
`getPrometheusMetricsV1` function returns the prometheus exporter metrics, currently displaying the total key count, which currently increments everytime the `set()` and `delete()` method of the `PluginKeychainVault` class is called.
1313

1414
### Prometheus Integration
1515
To use Prometheus with this exporter make sure to install [Prometheus main component](https://prometheus.io/download/).

packages/cactus-plugin-ledger-connector-besu/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ This class creates a prometheus exporter, which scrapes the transactions (total
226226
The prometheus exporter object is initialized in the `PluginLedgerConnectorBesu` class constructor itself, so instantiating the object of the `PluginLedgerConnectorBesu` class, gives access to the exporter object.
227227
You can also initialize the prometheus exporter object seperately and then pass it to the `IPluginLedgerConnectorBesuOptions` interface for `PluginLedgerConnectoBesu` constructor.
228228

229-
`getPrometheusExporterMetricsV1` function returns the prometheus exporter metrics, currently displaying the total transaction count, which currently increments everytime the `transact()` method of the `PluginLedgerConnectorBesu` class is called.
229+
`getPrometheusMetricsV1` function returns the prometheus exporter metrics, currently displaying the total transaction count, which currently increments everytime the `transact()` method of the `PluginLedgerConnectorBesu` class is called.
230230

231231
### Prometheus Integration
232232
To use Prometheus with this exporter make sure to install [Prometheus main component](https://prometheus.io/download/).

packages/cactus-plugin-ledger-connector-corda/src/main-server/kotlin/gen/kotlin-spring/src/main/kotlin/org/hyperledger/cactus/plugin/ledger/connector/corda/server/impl/ApiPluginLedgerConnectorCordaServiceImpl.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ class ApiPluginLedgerConnectorCordaServiceImpl(
279279
return DiagnoseNodeV1Response(nodeDiagnosticInfo = nodeDiagnosticInfoCactus)
280280
}
281281

282-
override fun getPrometheusExporterMetricsV1(): String {
282+
override fun getPrometheusMetricsV1(): String {
283283
TODO("Not yet implemented")
284284
}
285285

packages/cactus-plugin-ledger-connector-quorum/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ This class creates a prometheus exporter, which scrapes the transactions (total
9494
The prometheus exporter object is initialized in the `PluginLedgerConnectorQuorum` class constructor itself, so instantiating the object of the `PluginLedgerConnectorQuorum` class, gives access to the exporter object.
9595
You can also initialize the prometheus exporter object seperately and then pass it to the `IPluginLedgerConnectorQuorumOptions` interface for `PluginLedgerConnectoQuorum` constructor.
9696

97-
`getPrometheusExporterMetricsV1` function returns the prometheus exporter metrics, currently displaying the total transaction count, which currently increments everytime the `transact()` method of the `PluginLedgerConnectorQuorum` class is called.
97+
`getPrometheusMetricsV1` function returns the prometheus exporter metrics, currently displaying the total transaction count, which currently increments everytime the `transact()` method of the `PluginLedgerConnectorQuorum` class is called.
9898

9999
### Prometheus Integration
100100
To use Prometheus with this exporter make sure to install [Prometheus main component](https://prometheus.io/download/).

packages/cactus-plugin-ledger-connector-xdai/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ This class creates a prometheus exporter, which scrapes the transactions (total
107107
The prometheus exporter object is initialized in the `PluginLedgerConnectorXdai` class constructor itself, so instantiating the object of the `PluginLedgerConnectorXdai` class, gives access to the exporter object.
108108
You can also initialize the prometheus exporter object seperately and then pass it to the `IPluginLedgerConnectorXdaiOptions` interface for `PluginLedgerConnectoXdai` constructor.
109109

110-
`getPrometheusExporterMetricsV1` function returns the prometheus exporter metrics, currently displaying the total transaction count, which currently increments everytime the `transact()` method of the `PluginLedgerConnectorXdai` class is called.
110+
`getPrometheusMetricsV1` function returns the prometheus exporter metrics, currently displaying the total transaction count, which currently increments everytime the `transact()` method of the `PluginLedgerConnectorXdai` class is called.
111111

112112
### Prometheus Integration
113113
To use Prometheus with this exporter make sure to install [Prometheus main component](https://prometheus.io/download/).

0 commit comments

Comments
 (0)