feat(aks/iis): add iis-logmonitor AKS example and docs#220
Open
feat(aks/iis): add iis-logmonitor AKS example and docs#220
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a new, ready-to-run AKS example for running LogMonitor with IIS in a Windows container, and extends LogMonitor documentation with IIS monitoring guidance.
Changes:
- Introduces an
examples/aks/iis-logmonitorsample: Dockerfile + LogMonitor config + Kubernetes manifests + PowerShell automation scripts. - Adds Azure Monitor (Container Insights) guidance and example KQL queries for collecting IIS logs in AKS.
- Updates
LogMonitor/docs/README.mdwith an IIS monitoring section and markdown/lint formatting improvements.
Reviewed changes
Copilot reviewed 12 out of 17 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| examples/aks/iis-logmonitor/ps-scripts/vars.txt | Adds variable file for AKS provisioning scripts (currently contains credentials). |
| examples/aks/iis-logmonitor/ps-scripts/rg-create.ps1 | Creates resource group with subscription selection guardrails. |
| examples/aks/iis-logmonitor/ps-scripts/aks-create.ps1 | Creates AKS cluster and Windows node pool; fetches kubeconfig. |
| examples/aks/iis-logmonitor/ps-scripts/linux-nodepool.ps1 | Adds a Linux node pool (vars parsing currently broken). |
| examples/aks/iis-logmonitor/ps-scripts/deploy.ps1 | Applies Kubernetes deployment manifests with basic checks. |
| examples/aks/iis-logmonitor/ps-scripts/clean-up.ps1 | Deletes the resource group with confirmation/force option. |
| examples/aks/iis-logmonitor/deployment/deployment.yml | Deploys IIS + LogMonitor container and a LoadBalancer service. |
| examples/aks/iis-logmonitor/deployment/az-monitor-configmap.yaml | Provides a Container Insights agent ConfigMap sample for log/metric collection. |
| examples/aks/iis-logmonitor/Dockerfile | Builds Windows IIS image that downloads LogMonitor and runs ServiceMonitor via LogMonitor. |
| examples/aks/iis-logmonitor/LogMonitorConfig.json | Configures LogMonitor to tail IIS logs and subscribe to IIS-related ETW providers. |
| examples/aks/iis-logmonitor/README.md | Step-by-step build/deploy instructions and Azure Monitor guidance with screenshots. |
| examples/aks/iis-logmonitor/images/iis2.png | Screenshot asset referenced by the example README. |
| examples/aks/iis-logmonitor/images/iis3.png | Screenshot asset referenced by the example README. |
| LogMonitor/docs/README.md | Adds “IIS Monitoring with Log Monitor” section and improves formatting. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
msft-linliu
reviewed
Feb 8, 2026
4fd98de to
f7dc6b3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a ready-to-run AKS example for running LogMonitor with IIS, improve docs and monitoring guidance, include screenshots references, fix lint issues.