OpenTelemetry push exporter implementation (closes #478)

This commit is contained in:
mdecimus
2024-08-07 17:20:36 +02:00
parent a3284b8bc3
commit 03307433a7
35 changed files with 734 additions and 242 deletions

View File

@@ -30,6 +30,7 @@ X-References: <1234@local.machine.example> <3456@example.net>
X-References: <789@local.machine.example> <abcd@example.net>
X-Text: a b
X-Text: this is some text
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="boundary_0"

View File

@@ -162,6 +162,10 @@
"name": "X-Text",
"value": " this is some text"
},
{
"name": "MIME-Version",
"value": " 1.0"
},
{
"name": "Content-Type",
"value": " multipart/alternative; \r\n\tboundary=\"boundary_0\""

View File

@@ -1,5 +1,6 @@
Date: Tue, 10 Jul 2018 01:03:11 +0000
Message-ID: <my-message-id>
MIME-Version: 1.0
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

View File

@@ -21,6 +21,10 @@
"name": "Message-ID",
"value": " <my-message-id>"
},
{
"name": "MIME-Version",
"value": " 1.0"
},
{
"name": "Content-Type",
"value": " text/plain; charset=\"utf-8\""
@@ -54,6 +58,10 @@
"name": "Message-ID",
"value": " <my-message-id>"
},
{
"name": "MIME-Version",
"value": " 1.0"
},
{
"name": "Content-Type",
"value": " text/plain; charset=\"utf-8\""
@@ -81,6 +89,10 @@
"name": "Message-ID",
"value": " <my-message-id>"
},
{
"name": "MIME-Version",
"value": " 1.0"
},
{
"name": "Content-Type",
"value": " text/plain; charset=\"utf-8\""

View File

@@ -5,6 +5,7 @@ Subject: =?utf-8?Q?Why_not_both_importing_AND_exporting=3F_=E2=98=BA?=
To: "Colleagues": "James Smythe" <james@vandelay.com>;
"Friends": <jane@example.com>,
"=?utf-8?Q?John_Sm=C3=AEth?=" <john@example.com>
MIME-Version: 1.0
Content-Type: multipart/mixed;
boundary="boundary_0"

View File

@@ -55,6 +55,10 @@
"name": "To",
"value": " \"Colleagues\": \"James Smythe\" <james@vandelay.com>; \r\n\t\"Friends\": <jane@example.com>, \r\n\t\"=?utf-8?Q?John_Sm=C3=AEth?=\" <john@example.com>"
},
{
"name": "MIME-Version",
"value": " 1.0"
},
{
"name": "Content-Type",
"value": " multipart/mixed; \r\n\tboundary=\"boundary_0\""

View File

@@ -2,6 +2,7 @@ Date: Tue, 10 Jul 2018 01:03:11 +0000
From: "Joe Bloggs" <joe@example.com>
Message-ID: <my-message-id>
Subject: RFC 8621 Section 4.1.4 test
MIME-Version: 1.0
Content-Type: multipart/mixed;
boundary="boundary_0"

View File

@@ -36,6 +36,10 @@
"name": "Subject",
"value": " RFC 8621 Section 4.1.4 test"
},
{
"name": "MIME-Version",
"value": " 1.0"
},
{
"name": "Content-Type",
"value": " multipart/mixed; \r\n\tboundary=\"boundary_0\""

View File

@@ -2,6 +2,7 @@ Date: Tue, 10 Jul 2018 01:03:11 +0000
From: "Joe Bloggs" <joe@example.com>
Message-ID: <my-message-id>
Subject: World domination
MIME-Version: 1.0
Content-Language: en
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit

View File

@@ -39,6 +39,10 @@
"name": "Subject",
"value": " World domination"
},
{
"name": "MIME-Version",
"value": " 1.0"
},
{
"name": "Content-Language",
"value": " en"
@@ -87,6 +91,10 @@
"name": "Subject",
"value": " World domination"
},
{
"name": "MIME-Version",
"value": " 1.0"
},
{
"name": "Content-Language",
"value": " en"
@@ -129,6 +137,10 @@
"name": "Subject",
"value": " World domination"
},
{
"name": "MIME-Version",
"value": " 1.0"
},
{
"name": "Content-Language",
"value": " en"

View File

@@ -3,6 +3,7 @@ From: "Joe Bloggs" <joe@example.com>
Message-ID: <my-message-id>
Subject: World domination
To: "John" <john@example.com>
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="boundary_0"

View File

@@ -46,6 +46,10 @@
"name": "To",
"value": " \"John\" <john@example.com>"
},
{
"name": "MIME-Version",
"value": " 1.0"
},
{
"name": "Content-Type",
"value": " multipart/alternative; \r\n\tboundary=\"boundary_0\""