Microsoft.ServiceFabricApps.FabricObserver.Extensibility
3.3.0
Prefix Reserved
Requires NuGet 3.3.0 or higher.
dotnet add package Microsoft.ServiceFabricApps.FabricObserver.Extensibility --version 3.3.0
NuGet\Install-Package Microsoft.ServiceFabricApps.FabricObserver.Extensibility -Version 3.3.0
<PackageReference Include="Microsoft.ServiceFabricApps.FabricObserver.Extensibility" Version="3.3.0" />
paket add Microsoft.ServiceFabricApps.FabricObserver.Extensibility --version 3.3.0
#r "nuget: Microsoft.ServiceFabricApps.FabricObserver.Extensibility, 3.3.0"
// Install Microsoft.ServiceFabricApps.FabricObserver.Extensibility as a Cake Addin #addin nuget:?package=Microsoft.ServiceFabricApps.FabricObserver.Extensibility&version=3.3.0 // Install Microsoft.ServiceFabricApps.FabricObserver.Extensibility as a Cake Tool #tool nuget:?package=Microsoft.ServiceFabricApps.FabricObserver.Extensibility&version=3.3.0
FabricObserver Extensibility Library 3.3.0 (.NET 8)
FabricObserver.Extensibility is a .NET 8 library for building custom observers that extend FabricObserver's and ClusterObserver's capabilities to match your needs. A custom observer is managed just like a built-in observer.
How to implement an observer using FO's extensibility model
Create a new .NET core library project. You should target net8.0 in your csproj because that is the target net SDK version that FabricObserver 3.3.0 is built for.
Install the latest Microsoft.ServiceFabricApps.FabricObserver.Extensibility nupkg from https://www.nuget.org/profiles/ServiceFabricApps into your plugin project.
Write an observer plugin!
Steps
Create a new class file, MyObserver.cs.
This is the required signature for your plugin's constructor:
// FO will provide (and manage) both the FabricClient instance and StatelessServiceContext instance during startup.
public MyObserver(FabricClient fabricClient, StatelessServiceContext context) : base(fabricClient, context)
{
}
- Implement ObserverBase's two abstract functions:
public override Task ObserveAsync()
{
}
public override Task ReportAsync()
{
}
- Create a [PluginTypeName]Startup.cs file
using System.Fabric;
using FabricObserver;
using FabricObserver.Observers;
using Microsoft.Extensions.DependencyInjection;
[assembly: FabricObserverStartup(typeof(MyObserverStartup))]
namespace FabricObserver.Observers
{
public class MyObserverStartup : IFabricObserverStartup
{
public void ConfigureServices(IServiceCollection services, FabricClient fabricClient, StatelessServiceContext context)
{
services.AddScoped(typeof(ObserverBase), s => new MyObserver(fabricClient, context));
}
}
}
Build, put the output dll and ALL of its dependencies, both managed and native (this is very important), into the Config/Data/Plugins folder in FabricObserver/PackageRoot. You can place your plugin dll and all of its dependencies in its own folder under the Plugins directory (useful if you have multiple plugins). Again, ALL plugin dll dependencies (and their dependencies, if any) need to live in the same folder as the plugin dll. Note that if FabricObserver already employs the same version of dependency dll, then you can omit adding the dependency manually.
Add a new config section for your observer in FabricObserver/PackageRoot/Config/Settings.xml (see example at bottom of that file) Update ApplicationManifest.xml with Parameters if you want to support Versionless Application Parameter-only Upgrades for your plugin.
Ship it! (Well, test it first =)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- Microsoft.ApplicationInsights (>= 2.22.0)
- Microsoft.ApplicationInsights.NLogTarget (>= 2.22.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Microsoft.ServiceFabric.Services (>= 6.0.1017)
- Newtonsoft.Json (>= 13.0.3)
- NLog (>= 5.2.8)
- System.Diagnostics.PerformanceCounter (>= 8.0.0)
- System.Management (>= 8.0.0)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Microsoft.ServiceFabricApps.FabricObserver.Extensibility:
Package | Downloads |
---|---|
Microsoft.ServiceFabricApps.ClusterObserver.Linux.SelfContained
This package contains the Service Fabric ClusterObserver(CO) Application - built for .NET 8.0 and SF Runtime 10.1.x. CO is a highly configurable and extensible Service Fabric stateless service that monitors aggregated cluster health and emits SF entity-specific telemetry. It is designed to be run in Service Fabric Windows and Linux clusters. This package contains the entire application and can be used to build .NET Standard 2.0/.NET6 observer plugins. NOTE: If you want to target .NET 6 for your plugins, then you must use Microsoft.ServiceFabricApps.FabricObserver.Extensibility.3.2.9 or higher nuget package to build them. |
|
Microsoft.ServiceFabricApps.ClusterObserver.Windows.SelfContained
This package contains the Service Fabric ClusterObserver(CO) Application - built for .NET 8.0 and SF Runtime 10.1.x. CO is a highly configurable and extensible Service Fabric stateless service that monitors aggregated cluster health and emits SF entity-specific telemetry. It is designed to be run in Service Fabric Windows and Linux clusters. This package contains the entire application and can be used to build .NET Standard 2.0/.NET6 observer plugins. NOTE: If you want to target .NET 6 for your plugins, then you must use Microsoft.ServiceFabricApps.FabricObserver.Extensibility.3.2.9 or higher nuget package to build them. |
|
Microsoft.ServiceFabricApps.ClusterObserver.Linux.FrameworkDependent
This package contains the Service Fabric ClusterObserver(CO) Application - built for .NET 8.0 and SF Runtime 10.1.x. CO is a highly configurable and extensible Service Fabric stateless service that monitors aggregated cluster health and emits SF entity-specific telemetry. It is designed to be run in Service Fabric Windows and Linux clusters. This package contains the entire application and can be used to build .NET Standard 2.0/.NET6 observer plugins. NOTE: If you want to target .NET 6 for your plugins, then you must use Microsoft.ServiceFabricApps.FabricObserver.Extensibility.3.2.9 or higher nuget package to build them. |
|
Microsoft.ServiceFabricApps.ClusterObserver.Windows.FrameworkDependent
This package contains the Service Fabric ClusterObserver(CO) Application - built for .NET 8.0 and SF Runtime 10.1.x. CO is a highly configurable and extensible Service Fabric stateless service that monitors aggregated cluster health and emits SF entity-specific telemetry. It is designed to be run in Service Fabric Windows and Linux clusters. This package contains the entire application and can be used to build .NET Standard 2.0/.NET6 observer plugins. NOTE: If you want to target .NET 6 for your plugins, then you must use Microsoft.ServiceFabricApps.FabricObserver.Extensibility.3.2.9 or higher nuget package to build them. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Microsoft.ServiceFabricApps.FabricObserver.Extensibility:
Repository | Stars |
---|---|
microsoft/service-fabric-observer
Highly configurable, extensible and performant Service Fabric watchdog service that, out of the box, monitors a broad range of physical machine resources that tend to be very important to Service Fabric services and maps these metrics to SF entities. It targets both Windows and Linux SF clusters.
|
Version | Downloads | Last updated |
---|---|---|
3.3.0 | 146 | 8/7/2024 |
3.2.15 | 246 | 3/20/2024 |
3.2.14 | 201 | 1/31/2024 |
3.2.13 | 128 | 1/19/2024 |
3.2.12 | 167 | 12/21/2023 |
3.2.11 | 238 | 10/12/2023 |
3.2.10 | 252 | 9/7/2023 |
3.2.9 | 395 | 8/14/2023 |
3.2.8 | 232 | 5/15/2023 |
3.2.7 | 373 | 4/27/2023 |
3.2.6 | 543 | 3/17/2023 |
3.2.5 | 517 | 3/7/2023 |
3.2.4 | 386 | 12/8/2022 |
3.2.3 | 517 | 10/19/2022 |
3.2.2 | 534 | 9/27/2022 |
3.2.1 | 547 | 8/22/2022 |
3.2.0 | 588 | 7/12/2022 |
This is the .NET 8 implementation of FabricObserver's Extensibility library. Use this library to build .NET 8 FabricObserver and ClusterObserver plugins.