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 @@ -28,6 +28,7 @@ control plane, or runtime AI filter.
- `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.
- `src/Bower.Agent.Aws`: native EC2 host telemetry agent with IMDS enrichment.
- `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 @@ -49,6 +49,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bower.Source.Ama", "src\Bow
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bower.Dcr", "src\Bower.Dcr\Bower.Dcr.csproj", "{C6FDDD4F-022B-4431-85DF-839A7DEF1263}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bower.Agent.Aws", "src\Bower.Agent.Aws\Bower.Agent.Aws.csproj", "{A240528B-2792-4CEB-8A84-1CB773CA4BEC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -323,6 +325,18 @@ Global
{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
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Debug|x64.ActiveCfg = Debug|Any CPU
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Debug|x64.Build.0 = Debug|Any CPU
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Debug|x86.ActiveCfg = Debug|Any CPU
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Debug|x86.Build.0 = Debug|Any CPU
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Release|Any CPU.Build.0 = Release|Any CPU
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Release|x64.ActiveCfg = Release|Any CPU
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Release|x64.Build.0 = Release|Any CPU
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Release|x86.ActiveCfg = Release|Any CPU
{A240528B-2792-4CEB-8A84-1CB773CA4BEC}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -337,5 +351,6 @@ Global
{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}
{A240528B-2792-4CEB-8A84-1CB773CA4BEC} = {827E0CD3-B72D-47B6-A68D-7590B98EB39B}
EndGlobalSection
EndGlobal
5 changes: 5 additions & 0 deletions src/Bower.Agent.Aws/AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# AWS EC2 agent instructions

Host collectors stay read-only and path-bounded. Metadata enrichment uses IMDSv2
when available but unit tests must inject metadata. Never log raw host payloads
or credentials.
6 changes: 6 additions & 0 deletions src/Bower.Agent.Aws/Bower.Agent.Aws.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="../Bower.Contracts/Bower.Contracts.csproj" />
<ProjectReference Include="../Bower.Source.Aws/Bower.Source.Aws.csproj" />
</ItemGroup>
</Project>
Loading