Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ control plane, or runtime AI filter.
- `src/Bower.Pipeline`: declarative telemetry pipeline model, templates and validation.
- `src/Bower.Analytics`: telemetry quality and coverage scoring.
- `src/Bower.Source.Ama`: Azure Monitor Agent companion discovery and custom log mapping.
- `src/Bower.Dcr`: Data Collection Rule optimiser and health assessment.
- `schemas`, `policies`, `deploy`, `docs`, `tests`: versioned product assets.

Inspect nearest `AGENTS.md` before editing.
Expand Down
15 changes: 15 additions & 0 deletions Bower.sln
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bower.Analytics", "src\Bowe
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bower.Source.Ama", "src\Bower.Source.Ama\Bower.Source.Ama.csproj", "{A876B3F7-3209-4E9E-8993-2D9FF55637F2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bower.Dcr", "src\Bower.Dcr\Bower.Dcr.csproj", "{C6FDDD4F-022B-4431-85DF-839A7DEF1263}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -309,6 +311,18 @@ Global
{A876B3F7-3209-4E9E-8993-2D9FF55637F2}.Release|x64.Build.0 = Release|Any CPU
{A876B3F7-3209-4E9E-8993-2D9FF55637F2}.Release|x86.ActiveCfg = Release|Any CPU
{A876B3F7-3209-4E9E-8993-2D9FF55637F2}.Release|x86.Build.0 = Release|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Debug|x64.ActiveCfg = Debug|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Debug|x64.Build.0 = Debug|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Debug|x86.ActiveCfg = Debug|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Debug|x86.Build.0 = Debug|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Release|Any CPU.Build.0 = Release|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Release|x64.ActiveCfg = Release|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Release|x64.Build.0 = Release|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Release|x86.ActiveCfg = Release|Any CPU
{C6FDDD4F-022B-4431-85DF-839A7DEF1263}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -322,5 +336,6 @@ Global
{E125F241-5F0D-43FD-8781-092995E1D309} = {827E0CD3-B72D-47B6-A68D-7590B98EB39B}
{F1BFA9A3-4762-47C4-B97D-578A105A8D6C} = {827E0CD3-B72D-47B6-A68D-7590B98EB39B}
{A876B3F7-3209-4E9E-8993-2D9FF55637F2} = {827E0CD3-B72D-47B6-A68D-7590B98EB39B}
{C6FDDD4F-022B-4431-85DF-839A7DEF1263} = {827E0CD3-B72D-47B6-A68D-7590B98EB39B}
EndGlobalSection
EndGlobal
5 changes: 5 additions & 0 deletions src/Bower.Dcr/AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# DCR optimiser instructions

Analyse DCR documents offline. Never call live Azure APIs from unit tests.
Recommendations must be deterministic and include estimated savings only when
inputs provide volume signals.
1 change: 1 addition & 0 deletions src/Bower.Dcr/Bower.Dcr.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<Project Sdk="Microsoft.NET.Sdk" />
Loading