Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING: Generate System metrics semconv from YAML + move attributes to their own namespace #89

Merged
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6d7c1ce
WIP add system metrics to yaml
joaopgrassi Jun 2, 2023
5a0992c
Merge branch 'main' into feat/system-metrics-yaml
joaopgrassi Aug 2, 2023
988a16e
Add new metrics
joaopgrassi Aug 2, 2023
a474ca3
Expand system.cpu.state enum values
joaopgrassi Aug 3, 2023
4f88215
Expand system.memory.state enum values
joaopgrassi Aug 3, 2023
19cb403
Change system.cpu.cpu attribute to system.cpu.logical
joaopgrassi Aug 3, 2023
92ee09b
Merge branch 'main' into feat/system-metrics-yaml
arminru Aug 3, 2023
f1c73e2
Merge branch 'main' into feat/system-metrics-yaml
joaopgrassi Aug 7, 2023
abaa3b1
Merge branch 'main' into feat/system-metrics-yaml
joaopgrassi Aug 10, 2023
a2f9ec4
Add changelog and schema file changes
joaopgrassi Aug 10, 2023
a2d015e
Update model/metrics/system-metrics.yaml
joaopgrassi Aug 10, 2023
251faa2
Merge branch 'main' into feat/system-metrics-yaml
joaopgrassi Aug 11, 2023
48d0f29
Merge branch 'main' into feat/system-metrics-yaml
joaopgrassi Aug 16, 2023
c8a4a8d
Drop pluralization on system.process metric names
joaopgrassi Aug 16, 2023
9dab3ff
Fix 'processes" left-overs
joaopgrassi Aug 21, 2023
56332e3
Merge branch 'main' into feat/system-metrics-yaml
joaopgrassi Aug 21, 2023
b77d34a
Merge branch 'main' into feat/system-metrics-yaml
joaopgrassi Aug 22, 2023
004d76c
Merge branch 'main' into feat/system-metrics-yaml
joaopgrassi Sep 7, 2023
c67ec33
Revert system.processes pluralization change
joaopgrassi Sep 7, 2023
5b23e86
Merge branch 'main' into feat/system-metrics-yaml
joaopgrassi Sep 7, 2023
d7181d0
Merge branch 'main' into feat/system-metrics-yaml
joaopgrassi Sep 11, 2023
e7bbf62
Rename cpu.logical attribute to cpu.logical_number
joaopgrassi Sep 12, 2023
903d0f7
Merge branch 'feat/system-metrics-yaml' of github.com:dynatrace-oss-c…
joaopgrassi Sep 12, 2023
5fc46bb
Merge branch 'main' into feat/system-metrics-yaml
joaopgrassi Sep 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Expand system.cpu.state enum values
joaopgrassi committed Aug 3, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit a474ca38132382b851b4749befbb8f1919faa3cc
10 changes: 8 additions & 2 deletions docs/system/system-metrics.md
Original file line number Diff line number Diff line change
@@ -74,10 +74,13 @@ This metric is [recommended][MetricRecommended].

| Value | Description |
|---|---|
| `idle` | idle |
| `user` | user |
| `system` | system |
| `nice` | nice |
| `idle` | idle |
| `iowait` | iowait |
| `interrupt` | interrupt |
| `steal` | steal |
<!-- endsemconv -->

### Metric: `system.cpu.utilization`
@@ -100,10 +103,13 @@ This metric is [recommended][MetricRecommended].

| Value | Description |
|---|---|
| `idle` | idle |
| `user` | user |
| `system` | system |
| `nice` | nice |
| `idle` | idle |
| `iowait` | iowait |
| `interrupt` | interrupt |
| `steal` | steal |
<!-- endsemconv -->

### Metric: `system.cpu.physical.count`
10 changes: 8 additions & 2 deletions model/metrics/system-metrics.yaml
Original file line number Diff line number Diff line change
@@ -20,14 +20,20 @@ groups:
type:
allow_custom_values: true
members:
- id: idle
value: 'idle'
- id: user
value: 'user'
- id: system
value: 'system'
- id: nice
value: 'nice'
- id: idle
value: 'idle'
- id: iowait
value: 'iowait'
- id: interrupt
value: 'interrupt'
AlexanderWert marked this conversation as resolved.
Show resolved Hide resolved
- id: steal
value: 'steal'
brief: "The state of the CPU"
examples: ["idle", "interrupt"]
- id: cpu