-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(consortium-manual): add prometheus exporter
Primary Change -------------- 1. The consortium-manual plugin now includes the prometheus metrics exporter integration 2. OpenAPI spec now has api endpoint for the getting the prometheus metrics Refactorings that were also necessary to accomodate 1) and 2) ------------------------------------------------------------ 3. GetPrometheusMetricsV1 class is created to handle the corresponding api endpoint 4. IPluginConsortiumManualOptions interface in PluginConsortiumManual class now has a prometheusExporter optional field 5. The PluginConsortiumManual class has relevant functions and codes to incorporate prometheus exporter 6. get-node-jws-endpoint-v1.test.ts is changed to incorporate the prometheus exporter 7. Added Readme.md on the prometheus exporter usage Fixes #538 Signed-off-by: Jagpreet Singh Sasan <[email protected]>
- Loading branch information
1 parent
438dcda
commit bf55f94
Showing
13 changed files
with
498 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# `@hyperledger/cactus-plugin-consortium-manual` | ||
|
||
## Prometheus Exporter | ||
This class creates a prometheus exporter, which scrapes the total Cactus node count. | ||
|
||
### Usage Prometheus | ||
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. | ||
You can also initialize the prometheus exporter object seperately and then pass it to the `IPluginConsortiumManualOptions` interface for `PluginConsortiumManual` constructor. | ||
|
||
`getPrometheusExporterMetricsV1` function returns the prometheus exporter metrics, currently displaying the total cactus node count, which currently increments everytime `updateMetricNodeCount` method of the `PluginConsortiumManual` class is called. | ||
|
||
### Prometheus Integration | ||
To use Prometheus with this exporter make sure to install [Prometheus main component](https://prometheus.io/download/). | ||
Once Prometheus is setup, the corresponding scrape_config needs to be added to the prometheus.yml | ||
|
||
```(yaml) | ||
- job_name: 'consortium_manual_exporter' | ||
metrics_path: api/v1/plugins/@hyperledger/cactus-plugin-consortium-manual/get-prometheus-exporter-metrics | ||
scrape_interval: 5s | ||
static_configs: | ||
- targets: ['{host}:{port}'] | ||
``` | ||
|
||
Here the `host:port` is where the prometheus exporter metrics are exposed. The test cases (For example, packages/cactus-plugin-consortium-manual/src/test/typescript/unit/consortium/get-node-jws-endpoint-v1.test.ts) exposes it over `0.0.0.0` and a random port(). The random port can be found in the running logs of the test case and looks like (42379 in the below mentioned URL) | ||
`Metrics URL: http://0.0.0.0:42379/api/v1/plugins/@hyperledger/cactus-plugin-ledger-connector-fabric/get-prometheus-exporter-metrics` | ||
|
||
Once edited, you can start the prometheus service by referencing the above edited prometheus.yml file. | ||
On the prometheus graphical interface (defaulted to http://localhost:9090), choose **Graph** from the menu bar, then select the **Console** tab. From the **Insert metric at cursor** drop down, select **cactus_consortium_manual_total_node_count** and click **execute** | ||
|
||
### Helper code | ||
|
||
###### response.type.ts | ||
This file contains the various responses of the metrics. | ||
|
||
###### data-fetcher.ts | ||
This file contains functions encasing the logic to process the data points. | ||
|
||
###### metrics.ts | ||
This file lists all the prometheus metrics and what they are used for. |
21 changes: 21 additions & 0 deletions
21
packages/cactus-plugin-consortium-manual/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
...tium-manual/src/main/typescript/consortium/get-prometheus-exporter-metrics-endpoint-v1.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
import { Express, Request, Response } from "express"; | ||
|
||
import { | ||
Logger, | ||
LoggerProvider, | ||
LogLevelDesc, | ||
Checks, | ||
} from "@hyperledger/cactus-common"; | ||
|
||
import { | ||
IWebServiceEndpoint, | ||
IExpressRequestHandler, | ||
} from "@hyperledger/cactus-core-api"; | ||
|
||
import OAS from "../../json/openapi.json"; | ||
|
||
import { registerWebServiceEndpoint } from "@hyperledger/cactus-core"; | ||
|
||
import { PluginConsortiumManual } from "../plugin-consortium-manual"; | ||
|
||
export interface IGetPrometheusExporterMetricsEndpointV1Options { | ||
logLevel?: LogLevelDesc; | ||
plugin: PluginConsortiumManual; | ||
} | ||
|
||
export class GetPrometheusExporterMetricsEndpointV1 | ||
implements IWebServiceEndpoint { | ||
private readonly log: Logger; | ||
|
||
constructor( | ||
public readonly opts: IGetPrometheusExporterMetricsEndpointV1Options, | ||
) { | ||
const fnTag = "GetPrometheusExporterMetricsEndpointV1#constructor()"; | ||
|
||
Checks.truthy(opts, `${fnTag} options`); | ||
Checks.truthy(opts.plugin, `${fnTag} options.plugin`); | ||
|
||
this.log = LoggerProvider.getOrCreate({ | ||
label: "get-prometheus-exporter-metrics-v1", | ||
level: opts.logLevel || "INFO", | ||
}); | ||
} | ||
|
||
public getExpressRequestHandler(): IExpressRequestHandler { | ||
return this.handleRequest.bind(this); | ||
} | ||
|
||
public getPath(): string { | ||
return OAS.paths[ | ||
"/api/v1/plugins/@hyperledger/cactus-plugin-consortium-manual/get-prometheus-exporter-metrics" | ||
].get["x-hyperledger-cactus"].http.path; | ||
} | ||
|
||
public getVerbLowerCase(): string { | ||
return OAS.paths[ | ||
"/api/v1/plugins/@hyperledger/cactus-plugin-consortium-manual/get-prometheus-exporter-metrics" | ||
].get["x-hyperledger-cactus"].http.verbLowerCase; | ||
} | ||
|
||
public registerExpress(app: Express): IWebServiceEndpoint { | ||
registerWebServiceEndpoint(app, this); | ||
return this; | ||
} | ||
|
||
async handleRequest(req: Request, res: Response): Promise<void> { | ||
const fnTag = "GetPrometheusExporterMetrics#handleRequest()"; | ||
const verbUpper = this.getVerbLowerCase().toUpperCase(); | ||
this.log.debug(`${verbUpper} ${this.getPath()}`); | ||
|
||
try { | ||
const resBody = await this.opts.plugin.getPrometheusExporterMetrics(); | ||
res.status(200); | ||
res.send(resBody); | ||
} catch (ex) { | ||
this.log.error(`${fnTag} failed to serve request`, ex); | ||
res.status(500); | ||
res.statusMessage = ex.message; | ||
res.json({ error: ex.stack }); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.