menfra.prometheus-monitor 3.0.3

dotnet add package menfra.prometheus-monitor --version 3.0.3                
NuGet\Install-Package menfra.prometheus-monitor -Version 3.0.3                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="menfra.prometheus-monitor" Version="3.0.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add menfra.prometheus-monitor --version 3.0.3                
#r "nuget: menfra.prometheus-monitor, 3.0.3"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install menfra.prometheus-monitor as a Cake Addin
#addin nuget:?package=menfra.prometheus-monitor&version=3.0.3

// Install menfra.prometheus-monitor as a Cake Tool
#tool nuget:?package=menfra.prometheus-monitor&version=3.0.3                

Prometheus-Monitor

Prometheus-Monitor is a lightweight C# .NET package for tracking unusual behavior on endpoints. It monitors key metrics such as login frequency, IP changes, and access patterns, and alerts the system when it detects deviations from baseline behavior. Prometheus-Monitor is ideal for enhancing endpoint security by identifying potential security threats through behavioral analysis.

Key Features

  • Behavioral Monitoring: Tracks user actions and key metrics to detect unusual behavior.
  • Alerts for Anomalies: Notifies the system if deviations from normal patterns are detected.
  • Configurable Metrics: Easily configure which metrics to track, such as login frequency, IP address changes, and access patterns.
  • Lightweight: Minimal performance overhead, making it ideal for applications with real-time monitoring needs.

Getting Started

Installation

Install Prometheus-Monitor via NuGet Package Manager Console:

Install-Package Prometheus-Monitor

Or, add it to your .csproj file:

<PackageReference Include="Prometheus-Monitor" Version="1.0.0" />

#Setup and Configuration

To start monitoring, initialize Prometheus-Monitor in your application’s startup file (e.g., Startup.cs) and configure the metrics and alert thresholds you want to track.

// Startup.cs
using PrometheusMonitor;

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddPrometheusMonitor(options =>
        {
            options.TrackLoginFrequency = true;   // Enable tracking of login frequency
            options.TrackIPChanges = true;        // Enable tracking of IP address changes
            options.TrackAccessPatterns = true;   // Enable tracking of user access patterns
            options.AlertThresholds = new AlertThresholds
            {
                LoginFrequencyThreshold = 5,      // Example: Alert if login frequency exceeds 5 per minute
                IPChangeThreshold = 3,            // Example: Alert if IP changes more than 3 times in an hour
                AccessPatternDeviation = 0.2      // Example: 20% deviation from normal access pattern triggers an alert
            };
        });
    }
}

Usage

Prometheus-Monitor can be integrated within your application to log user actions and detect suspicious behavior automatically.

Example: Tracking Login Frequency and Detecting Anomalies

In this example, Prometheus-Monitor tracks login frequency, IP changes, and access patterns. If any metric deviates from its baseline, the system can log the incident or take action as configured.

using PrometheusMonitor;

public class UserActivityService
{
    private readonly IPrometheusMonitor _prometheusMonitor;

    public UserActivityService(IPrometheusMonitor prometheusMonitor)
    {
        _prometheusMonitor = prometheusMonitor;
    }

    public void TrackLogin(string userId, string ipAddress)
    {
        _prometheusMonitor.LogLogin(userId, ipAddress);

        if (_prometheusMonitor.DetectAnomalies(userId))
        {
            // Handle detected anomaly, such as alerting or logging the incident
            Console.WriteLine("Unusual behavior detected for user: " + userId);
        }
    }
}

Example Scenarios

  1. Login Frequency Monitoring: Alerts the system if a user logs in unusually often within a short time, which might indicate a brute-force attempt.
  2. IP Address Change Tracking: Flags accounts with frequent IP changes, which could suggest account-sharing or potential hijacking.
  3. Access Pattern Analysis: Detects significant deviations from typical user access patterns, such as unusual file access or directory browsing.

Contributing

We welcome contributions! Please open an issue or submit a pull request if you have suggestions or improvements.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contact

For questions or feedback, please contact [menfra@menfra.de].

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.3 75 11/12/2024