Microsoft.ServiceFabricApps.FabricObserver.Extensibility 3.2.15

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved

Requires NuGet 3.3.0 or higher.

dotnet add package Microsoft.ServiceFabricApps.FabricObserver.Extensibility --version 3.2.15
NuGet\Install-Package Microsoft.ServiceFabricApps.FabricObserver.Extensibility -Version 3.2.15
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="Microsoft.ServiceFabricApps.FabricObserver.Extensibility" Version="3.2.15" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.ServiceFabricApps.FabricObserver.Extensibility --version 3.2.15
#r "nuget: Microsoft.ServiceFabricApps.FabricObserver.Extensibility, 3.2.15"
#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 Microsoft.ServiceFabricApps.FabricObserver.Extensibility as a Cake Addin
#addin nuget:?package=Microsoft.ServiceFabricApps.FabricObserver.Extensibility&version=3.2.15

// Install Microsoft.ServiceFabricApps.FabricObserver.Extensibility as a Cake Tool
#tool nuget:?package=Microsoft.ServiceFabricApps.FabricObserver.Extensibility&version=3.2.15

FabricObserver Extensibility Library 3.2.15

FabricObserver.Extensibility is a .NET 6 library for building custom observers that extend FabricObserver'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

  1. Create a new .NET core library project. You should target net6.0 in your csproj because that is the target net SDK version that FabricObserver is built for.

  2. Install the latest Microsoft.ServiceFabricApps.FabricObserver.Extensibility nupkg from https://www.nuget.org/profiles/ServiceFabricApps into your plugin project.

  3. 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 Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Microsoft.ServiceFabricApps.FabricObserver.Extensibility:

Package Downloads
Microsoft.ServiceFabricApps.ClusterObserver.Linux.SelfContained The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package contains the Service Fabric ClusterObserver(CO) Application - built for .NET 6.0 and SF Runtime 9.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 observer plugins. NOTE: If you want to target .NET 6 for your plugins, then you must use Microsoft.ServiceFabricApps.FabricObserver.Extensibility.3.2.9 nuget package to build them.

Microsoft.ServiceFabricApps.ClusterObserver.Windows.SelfContained The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package contains the Service Fabric ClusterObserver(CO) Application - built for .NET 6.0 and SF Runtime 9.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 observer plugins. NOTE: If you want to target .NET 6 for your plugins, then you must use Microsoft.ServiceFabricApps.FabricObserver.Extensibility.3.2.9 nuget package to build them.

Microsoft.ServiceFabricApps.ClusterObserver.Linux.FrameworkDependent The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package contains the Service Fabric ClusterObserver(CO) Application - built for .NET 6.0 and SF Runtime 9.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 observer plugins. NOTE: If you want to target .NET 6 for your plugins, then you must use Microsoft.ServiceFabricApps.FabricObserver.Extensibility.3.2.9 nuget package to build them.

Microsoft.ServiceFabricApps.ClusterObserver.Windows.FrameworkDependent The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package contains the Service Fabric ClusterObserver(CO) Application - built for .NET 6.0 and SF Runtime 9.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 observer plugins. NOTE: If you want to target .NET 6 for your plugins, then you must use Microsoft.ServiceFabricApps.FabricObserver.Extensibility.3.2.9 nuget package to build them.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.2.15 143 3/20/2024
3.2.14 156 1/31/2024
3.2.13 97 1/19/2024
3.2.12 138 12/21/2023
3.2.11 209 10/12/2023
3.2.10 226 9/7/2023
3.2.9 308 8/14/2023
3.2.8 201 5/15/2023
3.2.7 312 4/27/2023
3.2.6 480 3/17/2023
3.2.5 461 3/7/2023
3.2.4 353 12/8/2022
3.2.3 480 10/19/2022
3.2.2 501 9/27/2022
3.2.1 498 8/22/2022
3.2.0 561 7/12/2022