Totopolis / monik

Monitoring system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Monik

Backend and client libraries to collect and process messages: logs, metrics (performance counters) and keep-alive statuses. System can operate with Azure Queue or RabbitMQ for messages exchange.

Setup backend

  1. Prepare Azure Service Bus namespace and queue
  2. Prepare SQL Database and execute src/db.sql
  3. Fill ServiceConfiguration files in MonikCloud project
  4. Deploy service

Client Use

  1. Add new nuget package source: https://www.myget.org/F/totopolis/
  2. Install last package Monik.Client.Azure to your project
  3. Sample:
////////////////////////////////
// Initialize (DI container use)
////////////////////////////////
container.Register<IMonikSender>(new AzureSender("[Service Bus connection string]", "[Queue name]"));
container.Register<IMonikSettings>(new ClientSettings()
{
    SourceName = "[Source name]",
    InstanceName = "[Instance name]",
    AutoKeepAliveEnable = true
});
container.Register<IMonik, MonikClient>().AsSingleton();

var mon = container.Resolve<IMonik>();

mon.ApplicationInfo("Hello world!");
mon.Measure("Packets", AggregationType.Accumulator, 1);
mon.Measure("DbProcedureExecTime", AggregationType.Gauge, 0.27);

/////////////////
// Old-school way
/////////////////
var sender = new AzureSender("[Service Bus connection string]", "[Queue name]");
M.Initialize(sender, "[Source name]", "[Source instance]", aAutoKeepAliveEnable: true);

// Send message
M.SecurityInfo("User John log in");
M.ApplicationError("Some error in application");
M.LogicInfo($"{processName} completed, processid={processId}");

Methodology

Metrics

  1. AggregationType.Accumulator: num of packets, executes, etc...
  2. AggregationType.Gauge: time of any process (db or api method execute)

Keep-alive

Method http://monikserver/keepalive-status can be used for Zabbix/Nagios monitoring

Logs

  1. SecurityVerbose:
  2. SecurityInfo: user XX log-in or log-out
  3. SecurityWarning: user XX bad username or password
  4. SecurityError: domain or service not accessible
  5. ApplicationVerbose: debug and trace
  6. ApplicationInfo:
  7. ApplicationWarning: service start or shutdown
  8. ApplicationError: any exceptions
  9. LogicVerbose:
  10. LogicInfo: something calculated
  11. LogicWarning: user request's bad params (for the service)
  12. LogicError: logic violation

Auth

Some server methods require a token in the Authorization header

Create JWT token

Here is an example of token creation process with nodejs: Generate a secret key

node -e "console.log(require('crypto').randomBytes(256).toString('base64'));"

Put the key in the appsettings.json and deploy with the new config

{
  "AuthSecretKey": "secret-key"
}

Create a token with a subject sub and an expiration timestamp exp, sign it with the previously generated key

node -e "console.log(require('jsonwebtoken').sign({sub:'name', exp:1550102400}, Buffer.from('secret_key', 'base64')));"

Use JWT token

Send the token with requests in the Authorization header

curl -X DELETE -H 'Authorization: Bearer <token>' -i http://monikserver/instances/1

About

Monitoring system

License:MIT License


Languages

Language:C# 94.9%Language:TSQL 2.0%Language:PLpgSQL 2.0%Language:PowerShell 0.8%Language:Dockerfile 0.3%