You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+96Lines changed: 96 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ The Metrics Operator is a powerful tool designed to monitor and provide insights
7
7
## Table of Contents
8
8
9
9
-[Key Features](#key-features)
10
+
-[Architecture Overview](#architecture-overview)
10
11
-[Installation](#installation)
11
12
-[Usage](#usage)
12
13
-[RBAC Configuration](#rbac-configuration)
@@ -23,6 +24,101 @@ The Metrics Operator is a powerful tool designed to monitor and provide insights
23
24
-**Strategic Decision Support**: Offers data-backed insights to guide product evolution.
24
25
-**Customizable Alerting System**: Allows defining alerts based on specific metric thresholds, enabling proactive response to potential issues or significant changes in system state.
25
26
27
+
## Architecture Overview
28
+
29
+
The Metrics Operator provides four main resource types for monitoring Kubernetes objects. Each type serves different use cases:
30
+
31
+
### Metric Resource Flow
32
+
33
+
```mermaid
34
+
graph LR
35
+
M[Metric] -->|targets via GroupVersionKind| K8S[Kubernetes Objects<br/>Pods, Services, etc.]
36
+
M -.->|optional| RCA[RemoteClusterAccess]
37
+
RCA -->|accesses remote cluster| K8S
38
+
M -->|sends data to| DS[Data Sink<br/>Dynatrace, etc.]
0 commit comments