Total Visitors

From d4c725563bd00edf14ea202e0bc86136b99094c7 Mon Sep 17 00:00:00 2001
From: Timna Brown <24630902+brown9804@users.noreply.github.com>
Date: Fri, 2 May 2025 07:54:34 -0600
Subject: [PATCH 03/11] + content list
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index d191da0..9561535 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,7 @@ Last updated: 2025-05-02
- [Microsoft Purview for Fabric](#microsoft-purview-for-fabric)
- [Networking](#networking)
- [Monitoring and Observability](#monitoring-and-observability)
+- [Cost Management](#cost-management)
From a9690c75f2b96ae2d2f231b520a38d19e9c439c6 Mon Sep 17 00:00:00 2001
From: Timna Brown <24630902+brown9804@users.noreply.github.com>
Date: Fri, 2 May 2025 07:56:42 -0600
Subject: [PATCH 04/11] fixing pipeline
---
.github/workflows/validate_and_fix_notebook.yml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.github/workflows/validate_and_fix_notebook.yml b/.github/workflows/validate_and_fix_notebook.yml
index 9bf6902..8694d04 100644
--- a/.github/workflows/validate_and_fix_notebook.yml
+++ b/.github/workflows/validate_and_fix_notebook.yml
@@ -52,6 +52,9 @@ jobs:
- name: Commit changes
run: |
+ git fetch origin
+ git checkout -b ${{ github.event.pull_request.head.ref }} origin/${{ github.event.pull_request.head.ref }}
git add -A
git commit -m "Fix notebook format issues" || echo "No changes to commit"
+ git pull --rebase origin ${{ github.event.pull_request.head.ref }} || echo "No rebase needed"
git push origin HEAD:${{ github.event.pull_request.head.ref }}
From 59d6e948510ffc4df355f2db4d003acf99a522eb Mon Sep 17 00:00:00 2001
From: Timna Brown <24630902+brown9804@users.noreply.github.com>
Date: Fri, 2 May 2025 08:00:48 -0600
Subject: [PATCH 05/11] Need to add references
---
Cost-Management/BillingReport.md | 101 +++++++++++++++++++++++++++++++
1 file changed, 101 insertions(+)
create mode 100644 Cost-Management/BillingReport.md
diff --git a/Cost-Management/BillingReport.md b/Cost-Management/BillingReport.md
new file mode 100644
index 0000000..20d0095
--- /dev/null
+++ b/Cost-Management/BillingReport.md
@@ -0,0 +1,101 @@
+# Azure Billing Report - Overview
+
+Costa Rica
+
+[](https://github.com) [](https://github.com/Naereen/badges/)
+
+[](https://github.com/)
+[brown9804](https://github.com/brown9804)
+
+Last updated: 2024-11-15
+
+----------
+
+## Content
+
+- [Cost Analysis](#cost-analysis)
+- [Billing Report](#billing-report)
+
+## Cost Analysis
+
+ - Select `Cost Analysis` from the Cost Management menu.
+ - `Use filters and groupings` to drill down into cost details by resource, resource group, or tags.
+ - `Save and share custom views` to keep stakeholders informed.
+
+

+
+## Billing Report
+
+> Generate and download billing reports for specific resources.
+
+> [!NOTE]
+> The total cost of the reservation is spread over the term of the reservation. This means that instead of paying the full amount upfront, the cost is amortized over the reservation period, making it easier to manage and predict expenses.
+
+> `For example`:
+> By committing to the F64 reservation of Microsoft Fabric, you receive a significant discount compared to the pay-as-you-go rate. The pay-as-you-go rate might be $11.52 per hour, but with the reservation, you pay $6.853 per hour, saving ~41%
+
+- **Navigate to Subscription**:
+ - `Sign in` to the Azure portal.
+ - `Select` the subscription where the factory is located from the `Subscriptions` menu.
+- **Access Cost Analysis**:
+ - In the left-hand menu, click on `Cost Management + Billing`.
+ - Under `Cost Management`, click on `Cost analysis`.
+
+

+
+- **Select Time Range**:
+ - In the Cost Analysis window, `click on the date range selector` at the top of the page.
+ - `Choose the start and end dates` for the period during which the issue occurred.
+ - `Apply` the selected date range.
+
+

+
+- **Group by** :
+ - In the Cost Analysis window, find the `Group by` dropdown menu.
+ - Select the desired option, e.g `Meter` from the dropdown options to group the costs by meter.
+
+

+
+- **Add Filter**:
+ - Click on `Add filter` located above the cost breakdown chart.
+ - From the first dropdown menu, select `Resource`.
+ - From the second dropdown menu, `select the resource ID` of the factory in question.
+ - `Apply` the filter to narrow down the costs to the specific resource.
+
+

+
+ | **Filter** | **Description** |
+ |-------------------|---------------------------------------------------------------------------------|
+ | Billing period | Allows you to break down costs by the month they were invoiced. |
+ | Charge type | Differentiates between usage, purchase, refund, and unused reservation costs. |
+ | Department | Breaks down costs by EA department, if applicable. |
+ | Frequency | Indicates whether a charge is one-time, recurring, or usage-based. |
+ | Invoice ID | Breaks down costs by billed invoice. |
+ | Location | Breaks down costs by resource location or region. |
+ | Meter | Breaks down costs by usage meter. |
+ | Pricing model | Differentiates between on-demand, reservation, or spot usage. |
+ | Product | Breaks down costs by product name. |
+ | Provider | Breaks down costs by provider type (e.g., Azure, Microsoft 365, AWS). |
+ | Publisher type | Differentiates between Microsoft, Azure, AWS, and Marketplace costs. |
+ | Reservation | Breaks down costs by reservation. |
+ | Resource | Breaks down costs by resource. |
+ | Resource group | Breaks down costs by resource group. |
+ | Service name | Breaks down costs by Azure service. |
+ | Service tier | Breaks down costs by Azure usage meter subclassification. |
+ | Subscription | Breaks down costs by Azure subscription and AWS linked account. |
+ | Tag | Breaks down costs by tag values for a specific tag key. |
+ | UnitOfMeasure | The billing unit of measure for the service. |
+
+- **Download Report**:
+ - At the top of the Cost Analysis window, click on the `Download` button.
+ - `Choose the format` (e.g., CSV, Excel) for the report.
+ - `Save the report` to your local machine.
+ - `Share the report` with the relevant stakeholders or team members.
+
+

+
+
+
+
Total Visitors
+

+
From f86a784f4a853d44615b50a15c99ee3c9f76c9c7 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
Date: Fri, 2 May 2025 14:01:01 +0000
Subject: [PATCH 06/11] Update last modified date in Markdown files
---
Cost-Management/BillingReport.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Cost-Management/BillingReport.md b/Cost-Management/BillingReport.md
index 20d0095..c13f30d 100644
--- a/Cost-Management/BillingReport.md
+++ b/Cost-Management/BillingReport.md
@@ -7,7 +7,7 @@ Costa Rica
[](https://github.com/)
[brown9804](https://github.com/brown9804)
-Last updated: 2024-11-15
+Last updated: 2025-05-02
----------
From aa833ee51954b62d4b9ca3edef6d703a9268ad90 Mon Sep 17 00:00:00 2001
From: Timna Brown <24630902+brown9804@users.noreply.github.com>
Date: Fri, 2 May 2025 08:45:24 -0600
Subject: [PATCH 07/11] cost analysis + billing report
---
Cost-Management/BillingReport.md | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/Cost-Management/BillingReport.md b/Cost-Management/BillingReport.md
index c13f30d..20be272 100644
--- a/Cost-Management/BillingReport.md
+++ b/Cost-Management/BillingReport.md
@@ -1,4 +1,4 @@
-# Azure Billing Report - Overview
+# Billing Report - Overview
Costa Rica
@@ -11,11 +11,22 @@ Last updated: 2025-05-02
----------
-## Content
+
+List of References (Click to expand)
+
+- [Cost Management documentation](https://learn.microsoft.com/en-us/azure/cost-management-billing/costs/)
+- [Cost Management + Billing documentation](https://learn.microsoft.com/en-us/azure/cost-management-billing/)
+
+
+
+
+Table of Content (Click to expand)
- [Cost Analysis](#cost-analysis)
- [Billing Report](#billing-report)
+
+
## Cost Analysis
- Select `Cost Analysis` from the Cost Management menu.
From 73b898cdbc8ea495526834034916d7767603fea3 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
Date: Fri, 2 May 2025 14:45:41 +0000
Subject: [PATCH 08/11] Fix Markdown syntax issues
---
Cost-Management/BillingReport.md | 41 ++++++++++++++++----------------
1 file changed, 20 insertions(+), 21 deletions(-)
diff --git a/Cost-Management/BillingReport.md b/Cost-Management/BillingReport.md
index 20be272..9428a05 100644
--- a/Cost-Management/BillingReport.md
+++ b/Cost-Management/BillingReport.md
@@ -29,9 +29,9 @@ Last updated: 2025-05-02
## Cost Analysis
- - Select `Cost Analysis` from the Cost Management menu.
- - `Use filters and groupings` to drill down into cost details by resource, resource group, or tags.
- - `Save and share custom views` to keep stakeholders informed.
+- Select `Cost Analysis` from the Cost Management menu.
+- `Use filters and groupings` to drill down into cost details by resource, resource group, or tags.
+- `Save and share custom views` to keep stakeholders informed.
@@ -46,32 +46,32 @@ Last updated: 2025-05-02
> By committing to the F64 reservation of Microsoft Fabric, you receive a significant discount compared to the pay-as-you-go rate. The pay-as-you-go rate might be $11.52 per hour, but with the reservation, you pay $6.853 per hour, saving ~41%
- **Navigate to Subscription**:
- - `Sign in` to the Azure portal.
- - `Select` the subscription where the factory is located from the `Subscriptions` menu.
+ - `Sign in` to the Azure portal.
+ - `Select` the subscription where the factory is located from the `Subscriptions` menu.
- **Access Cost Analysis**:
- - In the left-hand menu, click on `Cost Management + Billing`.
- - Under `Cost Management`, click on `Cost analysis`.
+ - In the left-hand menu, click on `Cost Management + Billing`.
+ - Under `Cost Management`, click on `Cost analysis`.
- **Select Time Range**:
- - In the Cost Analysis window, `click on the date range selector` at the top of the page.
- - `Choose the start and end dates` for the period during which the issue occurred.
- - `Apply` the selected date range.
+ - In the Cost Analysis window, `click on the date range selector` at the top of the page.
+ - `Choose the start and end dates` for the period during which the issue occurred.
+ - `Apply` the selected date range.
- **Group by** :
- - In the Cost Analysis window, find the `Group by` dropdown menu.
- - Select the desired option, e.g `Meter` from the dropdown options to group the costs by meter.
+ - In the Cost Analysis window, find the `Group by` dropdown menu.
+ - Select the desired option, e.g `Meter` from the dropdown options to group the costs by meter.
- **Add Filter**:
- - Click on `Add filter` located above the cost breakdown chart.
- - From the first dropdown menu, select `Resource`.
- - From the second dropdown menu, `select the resource ID` of the factory in question.
- - `Apply` the filter to narrow down the costs to the specific resource.
+ - Click on `Add filter` located above the cost breakdown chart.
+ - From the first dropdown menu, select `Resource`.
+ - From the second dropdown menu, `select the resource ID` of the factory in question.
+ - `Apply` the filter to narrow down the costs to the specific resource.
@@ -98,14 +98,13 @@ Last updated: 2025-05-02
| UnitOfMeasure | The billing unit of measure for the service. |
- **Download Report**:
- - At the top of the Cost Analysis window, click on the `Download` button.
- - `Choose the format` (e.g., CSV, Excel) for the report.
- - `Save the report` to your local machine.
- - `Share the report` with the relevant stakeholders or team members.
+ - At the top of the Cost Analysis window, click on the `Download` button.
+ - `Choose the format` (e.g., CSV, Excel) for the report.
+ - `Save the report` to your local machine.
+ - `Share the report` with the relevant stakeholders or team members.
-
Total Visitors

From 351e496aa8a45fcfd3e22e81edd8ace01eb1ebeb Mon Sep 17 00:00:00 2001
From: Timna Brown <24630902+brown9804@users.noreply.github.com>
Date: Fri, 2 May 2025 08:48:57 -0600
Subject: [PATCH 09/11] overview budget and alerts
---
Cost-Management/BudgetAlerts.md | 69 +++++++++++++++++++++++++++++++++
1 file changed, 69 insertions(+)
create mode 100644 Cost-Management/BudgetAlerts.md
diff --git a/Cost-Management/BudgetAlerts.md b/Cost-Management/BudgetAlerts.md
new file mode 100644
index 0000000..16399d7
--- /dev/null
+++ b/Cost-Management/BudgetAlerts.md
@@ -0,0 +1,69 @@
+# Budget \& Alerts - Overview
+
+Costa Rica
+
+[](https://github.com) [](https://github.com/Naereen/badges/)
+
+[](https://github.com/)
+[brown9804](https://github.com/brown9804)
+
+Last updated: 2024-11-15
+
+----------
+
+
+List of References (Click to expand)
+
+- [Tutorial: Create and manage budgets](https://learn.microsoft.com/en-us/azure/cost-management-billing/costs/tutorial-acm-create-budgets?tabs=psbudget)
+- [Use cost alerts to monitor usage and spending](https://learn.microsoft.com/en-us/azure/cost-management-billing/costs/cost-mgt-alerts-monitor-usage-spending)
+
+
+
+
+Table of Content (Click to expand)
+
+- [Set up Budgets](#set-up-budgets)
+- [Setting Up Alerts](#setting-up-alerts)
+- [Optimizing Costs](#optimizing-costs)
+
+
+
+**Accessing Cost Management**:
+ - `Sign in` to the Azure portal.
+ - `Navigate` to `Cost Management + Billing` from the left-hand menu.
+
+

+
+## Set up Budgets
+
+ - Go to `Cost Management` > `Budgets`.
+
+

+
+ - `Click on` `+ Add` to create a new budget.
+
+

+
+ - `Define the scope` (e.g., subscription or resource group), set the budget amount, and configure the reset period (monthly, quarterly, or annually).
+ - `Set up alerts` for actual and forecasted costs, and specify email recipients for notifications.
+
+

+
+## Setting Up Alerts
+
+ - Go to `Cost Management` > `Alerts`.
+ - Click on `+ Add` to create a new alert.
+ - `Choose the alert type` (e.g., anomaly detection) and configure the thresholds and notification settings.
+
+

+
+## Optimizing Costs
+
+ - Review cost-saving recommendations provided by Azure.
+ - Implement suggested optimizations to reduce unnecessary spending.
+
+
+
+
Total Visitors
+

+
From 14fafe28600cf55163fb0a7471eb5584bad681f5 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
Date: Fri, 2 May 2025 14:49:12 +0000
Subject: [PATCH 10/11] Update last modified date in Markdown files
---
Cost-Management/BudgetAlerts.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Cost-Management/BudgetAlerts.md b/Cost-Management/BudgetAlerts.md
index 16399d7..0b7ff24 100644
--- a/Cost-Management/BudgetAlerts.md
+++ b/Cost-Management/BudgetAlerts.md
@@ -7,7 +7,7 @@ Costa Rica
[](https://github.com/)
[brown9804](https://github.com/brown9804)
-Last updated: 2024-11-15
+Last updated: 2025-05-02
----------
From f80138df74482cf2cc44a511aba19f379fa66f7e Mon Sep 17 00:00:00 2001
From: Timna Brown <24630902+brown9804@users.noreply.github.com>
Date: Fri, 2 May 2025 08:51:09 -0600
Subject: [PATCH 11/11] formatting
---
Cost-Management/BudgetAlerts.md | 38 ++++++++++++++++-----------------
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/Cost-Management/BudgetAlerts.md b/Cost-Management/BudgetAlerts.md
index 0b7ff24..99c3e50 100644
--- a/Cost-Management/BudgetAlerts.md
+++ b/Cost-Management/BudgetAlerts.md
@@ -28,40 +28,40 @@ Last updated: 2025-05-02
-**Accessing Cost Management**:
- - `Sign in` to the Azure portal.
- - `Navigate` to `Cost Management + Billing` from the left-hand menu.
+> Accessing Cost Management:
-
+- `Sign in` to the Azure portal.
+- `Navigate` to `Cost Management + Billing` from the left-hand menu.
+
+
## Set up Budgets
- - Go to `Cost Management` > `Budgets`.
+- Go to `Cost Management` > `Budgets`.
-
-
- - `Click on` `+ Add` to create a new budget.
+
+
+- `Click on` `+ Add` to create a new budget.
-
+
- - `Define the scope` (e.g., subscription or resource group), set the budget amount, and configure the reset period (monthly, quarterly, or annually).
- - `Set up alerts` for actual and forecasted costs, and specify email recipients for notifications.
+- `Define the scope` (e.g., subscription or resource group), set the budget amount, and configure the reset period (monthly, quarterly, or annually).
+- `Set up alerts` for actual and forecasted costs, and specify email recipients for notifications.
-
+
## Setting Up Alerts
- - Go to `Cost Management` > `Alerts`.
- - Click on `+ Add` to create a new alert.
- - `Choose the alert type` (e.g., anomaly detection) and configure the thresholds and notification settings.
+- Go to `Cost Management` > `Alerts`.
+- Click on `+ Add` to create a new alert.
+- `Choose the alert type` (e.g., anomaly detection) and configure the thresholds and notification settings.
-
+
## Optimizing Costs
- - Review cost-saving recommendations provided by Azure.
- - Implement suggested optimizations to reduce unnecessary spending.
-
+- Review cost-saving recommendations provided by Azure.
+- Implement suggested optimizations to reduce unnecessary spending.
Total Visitors