diff --git a/README.md b/README.md
index f7ded1c..7969173 100644
--- a/README.md
+++ b/README.md
@@ -46,6 +46,33 @@ Last updated: 2025-08-27
+> [!NOTE]
+> - Azure Function App: This is the main service where your code lives and runs. Think of it as the container for your serverless functions.
+> - You write small pieces of code called functions that respond to events—like HTTP requests, database changes, or scheduled timers.
+> - These functions are event-driven or scheduled, meaning they only run when triggered, saving resources and cost.
+> - App Service Runtime: This layer is the execution environment that powers your Function App.
+> - Language Runtimes: Supports multiple languages like C#, JavaScript, Python, etc.
+> - HTTP Framework / Middleware: Handles incoming HTTP requests and routes them to the correct function.
+> - Application Insights: Monitors and logs telemetry data for performance and debugging.
+> - Kudu / IIS: Manages deployment, diagnostics, and request/response handling.
+> - Hosts Function App: This is the actual runtime that executes your function code.
+> - App Service Plan: This is the infrastructure layer that supports the runtime.
+> - Operating System: Can be Windows or Linux, depending on your configuration.
+> - Temporary Storage: Uses `C:\Local\Temp\` for non-persistent file storage during function execution.
+
+
+

+
+
+> [!TIP]
+> When a trigger (like an HTTP request or a timer) fires:
+> - The Function App receives the event.
+> - The App Service Runtime processes it using the appropriate language runtime and middleware.
+> - The function executes, possibly logging data to Application Insights.
+> - The underlying OS and storage support the execution environment.
+
+`This setup allows developers to focus purely on writing code without worrying about servers, scaling, or infrastructure management—making Azure Functions a powerful serverless computing option.`
+
## Scenarios
1. [High Decay test](./scenario1-high-decay): Test rapid temp file accumulation and disk decay
@@ -108,7 +135,7 @@ Last updated: 2025-08-27
-

-
Refresh Date: 2025-09-30
+

+
Refresh Date: 2025-10-01
diff --git a/_docs/FunctionApp Temp Usage - Diagrams.drawio b/_docs/FunctionApp Temp Usage - Diagrams.drawio
new file mode 100644
index 0000000..e4dfbd5
--- /dev/null
+++ b/_docs/FunctionApp Temp Usage - Diagrams.drawio
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/scenario1-high-decay/README.md b/scenario1-high-decay/README.md
index 49f9805..4527344 100644
--- a/scenario1-high-decay/README.md
+++ b/scenario1-high-decay/README.md
@@ -147,7 +147,7 @@ Last updated: 2025-08-27
-

-
Refresh Date: 2025-09-30
+

+
Refresh Date: 2025-10-01
diff --git a/scenario1-high-decay/terraform-infrastructure/README.md b/scenario1-high-decay/terraform-infrastructure/README.md
index 059f2ce..ded8fe5 100644
--- a/scenario1-high-decay/terraform-infrastructure/README.md
+++ b/scenario1-high-decay/terraform-infrastructure/README.md
@@ -126,7 +126,7 @@ graph TD;
-

-
Refresh Date: 2025-09-30
+

+
Refresh Date: 2025-10-01
diff --git a/scenario2-optimized/README.md b/scenario2-optimized/README.md
index 7700ef9..be9cb9f 100644
--- a/scenario2-optimized/README.md
+++ b/scenario2-optimized/README.md
@@ -150,7 +150,7 @@ Last updated: 2025-09-05
-

-
Refresh Date: 2025-09-30
+

+
Refresh Date: 2025-10-01
diff --git a/scenario2-optimized/terraform-infrastructure/README.md b/scenario2-optimized/terraform-infrastructure/README.md
index 1531259..d05f621 100644
--- a/scenario2-optimized/terraform-infrastructure/README.md
+++ b/scenario2-optimized/terraform-infrastructure/README.md
@@ -126,7 +126,7 @@ graph TD;
-

-
Refresh Date: 2025-09-30
+

+
Refresh Date: 2025-10-01