NuGet ยท nuget

Redeon.SuperSiteEngineCore.Web.Eltheon.Core.Runtime

Core runtime foundation for Eltheon state, configuration, paths, diagnostics, policies, events, and metrics.

Install

Install-Kommandos

dotnet add package Redeon.SuperSiteEngineCore.Web.Eltheon.Core.Runtime --version 2.9.15
<PackageReference Include="Redeon.SuperSiteEngineCore.Web.Eltheon.Core.Runtime" Version="2.9.15" />
paket add Redeon.SuperSiteEngineCore.Web.Eltheon.Core.Runtime --version 2.9.15
Install-Package Redeon.SuperSiteEngineCore.Web.Eltheon.Core.Runtime -Version 2.9.15

README

Vorschau

Redeon.SuperSiteEngineCore.Web.Eltheon.Core.Runtime

Core.Runtime provides the Eltheon runtime foundation for typed runtime configuration, runtime state, maintenance state, restart requirements, paths, diagnostics, events, policies, runtime metrics, and persistent boot tasks.

It is a foundation package, not a feature package. It intentionally does not contain Admin UI, RuntimeManagement UI, Watchdog proxy behavior, installer composition, EF migrations, or plugin management behavior.

Boundaries

  • Runtime implementations live here.
  • Stable neutral contracts live in Core.Abstractions.
  • Existing IConfig and ConfigsFile persistence remain owned by Core.ConfigFiles.
  • Runtime metrics are projections only; runtime state remains the source of truth.
  • Boot tasks are stored atomically below RuntimeRoot, execute serially in either PreComposition or PreHostedServices, and expose only sanitized snapshots. Existing tasks default to PreHostedServices; configuration-changing migrations opt into PreComposition. Blocking failures require an explicit retry or cancel.
  • Restart requirements carry a stable subsystem group and the runtime instance that created or refreshed them. A later ApplicationHost instance reconciles earlier-instance requirements even when the application was stopped and started without the Watchdog.
  • Restart state uses atomic replacement and last-valid backups. Invalid primary and backup state fails closed instead of being replaced with an empty list.
  • Watchdog intent and observation data provide additional supervised-restart evidence; an intent by itself never proves a restart.

Adviser Contributors

AddEltheonCoreRuntime() registers three scoped Adviser checks through the neutral Core.Abstractions contributor contract:

  • eltheon.runtime.config-file-integrity
  • eltheon.runtime.boot-task-recovery
  • eltheon.runtime.restart-requirements

The checks read existing runtime snapshots only. Evidence excludes paths, free-text errors, actors, payloads, and correlation data. Manual and recheck targeting accepts only validated runtime subject keys. Related restart requirements are grouped into one finding per stable subsystem key so a plugin operation does not produce duplicated Adviser cards.