service-perfmon2-node
v1.0.1
Published
Distributed trace counters microservice in Node.js / ES2017 V2
Maintainers
Readme
Perfmon Microservice V2
This is a performance monitor microservice from Pip.Services library for Node.js / ES2017 V2. It collects performance metrics from distributed microservices, stores and provides a single entry point to read all of them.
The microservice currently supports the following deployment options:
- Deployment platforms: Standalone Process
- External APIs: HTTP/REST
- Persistence: Memory
This microservice has no dependencies on other microservices.
Quick Links:
Contract
Logical contract of the microservice is presented below.
enum CounterType {
Interval = 0,
LastValue = 1,
Statistics = 2,
Timestamp = 3,
Increment = 4,
}
class CounterV1 {
public constructor(name: string, type: CounterType) {
this.name = name;
this.type = type;
}
public name: string;
public type: CounterType;
public last: number;
public count: number;
public min: number;
public max: number;
public average: number;
public time: Date;
}
interface IPerfMonV1 {
readPerfMon(
context: IContext,
filter: FilterParams,
paging: PagingParams
): Promise<DataPage<CounterV1>>;
writeCounter(context: IContext, counter: CounterV1): Promise<CounterV1>;
writePerfMon(context: IContext, counters: CounterV1[]): Promise<void>;
clear(context: IContext): Promise<void>;
}Download
Right now the only way to get the microservice is to check it out directly from github repository:
git clone [email protected]:entinco/eic-services-infrastructure2.gitPip.Service team is working to implement packaging and make stable releases available for your as zip downloadable archieves.
Develop
Environment Setup
This is a Node.js project and you have to install Node.js tools. You can download them from official Node.js website: https://nodejs.org/en/download/
After node is installed you can check it by running the following command:
node -versionThen you need to configure node tools:
# Install typescript compiler
npm install typescript -g
# Install mocha test runner
npm install mocha -gTo work with GitHub code repository you need to install Git from: https://git-scm.com/downloads
If you are planning to develop and test using persistent storages other than flat files you may need to install database servers:
- Download and install MongoDB database from https://www.mongodb.org/downloads
Installing
After your environment is ready you can check out microservice source code from the Github repository:
git clone [email protected]:entinco/eic-services-infrastructure2.gitThen go to the project folder and install dependent modules:
# Install dependencies
npm installIf you worked with the microservice before you can check out latest changes and update the dependencies:
# Update source code updates from github
git pull
# Update dependencies
npm updateBuilding
This microservice is written in TypeScript language which is transcompiled into JavaScript. So, if you make changes to the source code you need to compile it before running or committing to github. The process will output compiled javascript files into /bin folder.
tscWhen you do continuous edit-build-test cycle, you can run typescript compiler with --watch option to detect and compile changes you make automatically:
tsc --watchTesting
Before you execute tests you need to set configuration options in config.yaml file. As a starting point you can use example from config.example.yaml:
copy config.example.yaml config.yamlAfter that check all configuration options. Specifically, pay attention to connection options for database and dependent microservices. For more information check the Configuration section.
Command to run unit tests:
npm testYou can also execute benchmarks as:
npm run benchmarkContributing
Developers interested in contributing should read the following instructions:
Please do not ask general questions in an issue. Issues are only to report bugs, request enhancements, or request new features. For general questions and discussions, use the Contributors Forum.
It is important to note that for each release, the ChangeLog is a resource that will itemize all:
- Bug Fixes
- New Features
- Breaking Changes
Configure
PerfMon microservice configuration structure follows the standard configuration structure.
Persistence
This microservice supports currently supports only in-memory persistence. In the future other types of persistence will be added like file, AWS S3, etc.
For more information on this section read Pip.Controllers Configuration Guide
Memory
Memory persistence has the following configuration properties:
- options: object - Misc configuration options
- max_page_size: number - Maximum number of items per page (default: 100)
Example:
- descriptor: "perfmon:persistence:memory:default:1.0"
options:
max_page_size: 100Service
The service component containes the core business logic of the microservice. Besides component descriptor it doesn't expect configuration options.
Example:
- descriptor: "perfmon:service:default:default:1.0"Controllers
The controller components (also called endpoints) expose external microservice API for the consumers. Each microservice can expose multiple APIs (HTTP/REST) and multiple versions of the same API type. At least one service is required for the microservice to run successfully.
Http
HTTP service has the following configuration properties:
- connection: object - HTTP transport configuration options
- type: string - HTTP protocol - 'http' or 'https' (default is 'http')
- host: string - IP address/hostname binding (default is '0.0.0.0')
- port: number - HTTP port number
Example:
- descriptor: "perfmon:controller:commandable-http:default:1.0"
connection:
protocol: "http"
host: "0.0.0.0"
port: 3000For more information on this section read Pip.Controllers Configuration Guide
Run
Process
The simplest way to deploy the microservice is to run it as a standalone process. This microservice is implemented in JavaScript and requires installation of Node.js. You can get it from the official site at https://nodejs.org/en/download
Step 1. Download microservices by following instructions
Step 2. Add config.yaml file to the config folder and set configuration parameters. See Configuration Guide for details.
Step 3. Start the microservice using the command:
node ./bin/main.jsUse
The easiest way to work with the microservice is to use client library.
If you use Node.js then you should add dependency to the client library into package.json file of your project
{
dependencies: {
...
"client-perfmon2-node": "^1.0.*"
...
}
}Inside your code get the reference to the client library
var sdk = new require("client-perfmon2-node");Define client configuration parameters that match configuration of the microservice external API
// Client configuration
var config = {
connection: {
protocol: "http",
host: "localhost",
port: 8080,
},
};Instantiate the client and open connection to the microservice
// Create the client instance
var client = sdk.PerfMonHttpClientV1(config);
// Connect to the microservice\
try {
await client.open(null);
// Work with the microservice
...
} catch(err) {
console.error('Connection to the microservice failed');
console.error(err);
}
Now the client is ready to perform operations
// Log a counter
let counter = await client.writeCounter(null, {
name: "group.counter",
type: 1,
last: "123",
});var now = new Date();
// Get the list system activities
let page = await client.readPerfMon(
null,
{
group: "test",
},
{
total: true,
skip: 0,
take: 10,
}
);Acknowledgements
This client library was created and currently maintained by:
