REST Quickstat
Seamless integration with Node.js REST instances, allowing effortless monitoring of key metrics for express.js, fastify etc.
REST Monitoring Plugin
The QuickStat REST Plugin offers seamless integration with REST instances, allowing effortless monitoring of key metrics. It exports these metrics to Prometheus, enabling visualization in Grafana dashboards.
If you are new to QuickStat and its component, feel free to check the official documentation for a detailed breakdown.
If one of the following frameworks is being used, the dedicated plugins should be used instead of the REST plugin:
Installation
Start by installing the QuickStat core package, the data source used by grafana and then the REST plugin:
npm install @quickstat/core
npm install @quickstat/prometheus
npm install @quickstat/rest
Getting Started
If you use docker and want to get started quickly, you can check the following docker-setup, which allows you to skip the setup and directly use the plugin. Once you have setup docker, continue on Step 3.
If your unfamiliar with QuickStat’s plugins, then keep in mind that you can also use other strategies such as (PushGateway) for exposing metrics or even combine your dashboard with other plugins.
If you want to set up Prometheus and Grafana manually, follow the steps below:
1. Setup Prometheus and Grafana
Install Prometheus: Follow the official documentation to install Prometheus on your system.
Install Grafana: Refer to the official documentation for instructions on installing Grafana.
Configure Prometheus Data Source in Grafana: After installing Grafana, configure Prometheus as a data source. Go to Grafana settings, add a new data source, and specify the URL where Prometheus is running.
2. Import Dashboard to Grafana
Once Prometheus and Grafana are set up, you can add following Dashboard. Navigate to the Grafana dashboard page, click on “Import” and paste the dashboard template URL. Then, customize the dashboard as needed.
3. Expose REST Metrics
To expose the metrics to prometheus using the QuickStat REST Plugin, use the following code snippet:
import { Client as QuickStatClient } from '@quickstat/core'
import { Pm2Plugin } from '@quickstat/pm2'
import { PrometheusDataSource, ScrapeStrategy } from '@quickstat/prometheus'
import pm2 from 'pm2' // uses the pm2 to get the metrics
import http from 'http'
// Create QuickStat Client
const quickStatClient = new QuickStatClient()<PrometheusDataSource<ScrapeStrategy>>({
metrics: [],
plugins: [
// Register REST Plugin
new RestPlugin(),
],
// Register the data source
dataSource: new PrometheusDataSource({
strategy: new ScrapeStrategy(),
}),
})
// [...] Observation logic
// Let Prometheus scrape the metrics at http://localhost:3242
// WARNING: On production, properly secure the endpoint (if open)
http.createServer(async (req, res) => {
const response = await quickStatClient.dataSource?.strategy?.getResponse()
// Write the prometheus response file
if (response) {
res.writeHead(200, response.headers)
res.end(response.file)
}
}).listen(3242)
4. Add Observation Logic
If your REST framework is supported by the plugin, you should follow the framework guide for the plugin instead:
Please refer to the respective documentation for more information.
If you want to observe the REST requests and the REST framework you are using does not has a dedicated plugin, you can use the RestRequestObserver
to observe the requests. The following example shows how to observe a request in an express-like application:
// [...]
app.get('/users/:id/todos', (req, res) => {
const observer = new RestRequestObserver(quickStatClient) // Create a new request observer
// [...] Your business logic
observer.end(getObservationData(req, res)) // End the request observer and save observation data
})
// Function to get the observation data from the request
function getObservationData(req: Request, res: Response): ObserveRestRequestOptions {
return {
method: req.method as ObserveRestRequestOptions['method'],
path: req.route.path, // get the path with variables
status: res.statusCode,
size: {
request: req.socket.bytesRead,
response: req.socket.bytesWritten,
},
}
}
5. Start the Application
After setting up the code, start the application. The metrics will be available at http://localhost:3242
in Prometheus format and will be scraped by Prometheus, which will then be used for visualization in Grafana.
Configuration
DataSource
The example above uses the PrometheusDataSource with the ScrapeStrategy. The ScrapeStrategy exposes the prometheus file on the given endpoint for being scraped from prometheus. You can also use the PushGatewayStrategy to push the metrics to the PushGateway of Prometheus.
If you would like to use other data sources, you can take a look at the available data sources in the @quickstat/core package.
Plugin
Option | Description | Default |
---|---|---|
excludeMetrics | Array of metrics to exclude | [] |
Contributing and Issues
If you have any issues or feature requests, feel free to open an issue on the GitHub repository
Data source config
Collector config:
Upload an updated version of an exported dashboard.json file from Grafana
Revision | Description | Created | |
---|---|---|---|
Download |