Add practical examples to multiple files

- LF9-03 Virtualisierung: Docker Compose + Volume examples
- LF6-02 Frontend: To-Do list practical example
- LF8-04 ETL: Complete ETL pipeline example
- LF6-04 Sicherheit: Express.js security headers
- LF2-04 Nutzwertanalyse: Cloud provider selection example
- LF9-04 Monitoring: Prometheus alerts + Python logging
This commit is contained in:
2026-03-13 12:01:15 +01:00
parent eb4a13ef7c
commit 7df533c7a2
7 changed files with 331 additions and 7 deletions

View File

@@ -80,6 +80,73 @@ Laptop B:
---
## Praktisches Beispiel: Cloud-Anbieter Auswahl
### Szenario
Ein Unternehmen muss sich zwischen AWS, Azure und Google Cloud entscheiden.
### 1. Kriterien definieren
| Kriterium | Bedeutung |
|-----------|-----------|
| Preis | Kosten pro Monat |
| Leistung | Rechenleistung, Geschwindigkeit |
| Sicherheit | Zertifizierungen, Features |
| Support | Deutsche Ansprechpartner |
| Skalierbarkeit | Einfache Erweiterung |
### 2. Gewichtung
| Kriterium | Gewichtung |
|-----------|------------|
| Preis | 25% |
| Leistung | 30% |
| Sicherheit | 25% |
| Support | 10% |
| Skalierbarkeit | 10% |
| **Summe** | **100%** |
### 3. Bewertung (1-10)
| Kriterium | Gewichtung | AWS | Azure | Google Cloud |
|-----------|------------|-----|-------|--------------|
| Preis | 25% | 7 | 8 | 9 |
| Leistung | 30% | 9 | 8 | 9 |
| Sicherheit | 25% | 9 | 8 | 8 |
| Support | 10% | 7 | 8 | 6 |
| Skalierbarkeit | 10% | 9 | 8 | 9 |
### 4. Berechnung
```
AWS:
= 0,25×7 + 0,30×9 + 0,25×9 + 0,10×7 + 0,10×9
= 1,75 + 2,70 + 2,25 + 0,70 + 0,90
= 8,30
Azure:
= 0,25×8 + 0,30×8 + 0,25×8 + 0,10×8 + 0,10×8
= 2,00 + 2,40 + 2,00 + 0,80 + 0,80
= 8,00
Google Cloud:
= 0,25×9 + 0,30×9 + 0,25×8 + 0,10×6 + 0,10×9
= 2,25 + 2,70 + 2,00 + 0,60 + 0,90
= 8,45
```
### 5. Ergebnis
| Anbieter | Nutzwert | Rang |
|----------|----------|------|
| Google Cloud | 8,45 | 1 |
| AWS | 8,30 | 2 |
| Azure | 8,00 | 3 |
**Empfehlung:** Google Cloud (aufgrund des besten Preis-Leistungs-Verhältnisses)
---
## Vorlage
### Nutzwertanalyse - Vorlage