From f7be77affac70e76b943ba0ee172cd82c4e7abcd Mon Sep 17 00:00:00 2001 From: Tigran Najaryan Date: Mon, 1 Nov 2021 21:13:30 -0400 Subject: [PATCH] Fix Syslog severity number mapping in the example 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 --- 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 d5c7057157e..c875b502c9d 100644 --- a/specification/logs/data-model.md +++ b/specification/logs/data-model.md @@ -1316,8 +1316,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