From 40cd432b39ed0b9b3c0855a06474b4bfa84f0c2d Mon Sep 17 00:00:00 2001 From: Tigran Najaryan <4194920+tigrannajaryan@users.noreply.github.com> Date: Thu, 4 Nov 2021 14:36:37 -0400 Subject: [PATCH] Fix Syslog severity number mapping in the example (#2091) Emergency and Alert were incorrectly ordered (Emergency is was less severe but it is actually more severe in Syslog). This fixes the mapping. Fixes https://github.com/open-telemetry/opentelemetry-specification/issues/2042 Co-authored-by: Bogdan Drutu --- CHANGELOG.md | 3 +++ specification/logs/data-model.md | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b57a825c8c..90b4508ea4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,9 @@ release. ### Logs +- Fix Syslog severity number mapping in the example. + ([#2091](https://github.com/open-telemetry/opentelemetry-specification/pull/2091)) + ### Resource ### Semantic Conventions diff --git a/specification/logs/data-model.md b/specification/logs/data-model.md index c5b58473933..cfde3cb306a 100644 --- a/specification/logs/data-model.md +++ b/specification/logs/data-model.md @@ -1318,8 +1318,8 @@ for an exhaustive list. |Warning |Warning |WARN |Warn | WARNING |WARN | |Error |Error |ERROR |Error | SEVERE |ERROR | |Critical |Critical | |Dpanic| |ERROR2 | -|Emergency | | |Panic | |ERROR3 | -|Alert | |FATAL |Fatal | |FATAL | +|Alert | | |Panic | |ERROR3 | +|Emergency | |FATAL |Fatal | |FATAL | ## References