@contrail/telemetry 2.0.11-alpha-semantic-convention.2 → 2.0.12-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,7 @@ All notable changes to `@contrail/telemetry` are documented here.
|
|
|
5
5
|
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
6
6
|
Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [
|
|
8
|
+
## [2.0.11] - 2026-04-24
|
|
9
9
|
|
|
10
10
|
### Added
|
|
11
11
|
|
|
@@ -22,6 +22,12 @@ export declare const ATTR_USER_ROLES: "user.roles";
|
|
|
22
22
|
* @see https://opentelemetry.io/docs/specs/semconv/resource/deployment-environment/
|
|
23
23
|
*/
|
|
24
24
|
export declare const ATTR_DEPLOYMENT_ENVIRONMENT_NAME: "deployment.environment.name";
|
|
25
|
+
/**
|
|
26
|
+
* The SQS FIFO message group ID.
|
|
27
|
+
* Follows the `aws.sqs.*` namespace pattern established by `aws.sqs.queue.url`.
|
|
28
|
+
* @see https://opentelemetry.io/docs/specs/semconv/messaging/sqs/
|
|
29
|
+
*/
|
|
30
|
+
export declare const ATTR_AWS_SQS_MESSAGE_GROUP_ID: "aws.sqs.message_group_id";
|
|
25
31
|
/**
|
|
26
32
|
* Builds a custom attribute name with the `contrail.*` namespace prefix.
|
|
27
33
|
* Enforces lowercase for string literals at compile time; runtime values are not validated.
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* @see https://opentelemetry.io/docs/specs/semconv/registry/attributes/
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
-
exports.ATTR_CONTRAIL_USER = exports.ATTR_CONTRAIL_SYSTEM = exports.ATTR_DEPLOYMENT_ENVIRONMENT_NAME = exports.ATTR_USER_ROLES = exports.ATTR_USER_EMAIL = exports.ATTR_USER_ID = void 0;
|
|
11
|
+
exports.ATTR_CONTRAIL_USER = exports.ATTR_CONTRAIL_SYSTEM = exports.ATTR_AWS_SQS_MESSAGE_GROUP_ID = exports.ATTR_DEPLOYMENT_ENVIRONMENT_NAME = exports.ATTR_USER_ROLES = exports.ATTR_USER_EMAIL = exports.ATTR_USER_ID = void 0;
|
|
12
12
|
exports.buildContrailAttributeName = buildContrailAttributeName;
|
|
13
13
|
// ---------------------------------------------------------------------------
|
|
14
14
|
// OTel-spec attributes not yet in the SDK
|
|
@@ -29,6 +29,12 @@ exports.ATTR_USER_ROLES = 'user.roles';
|
|
|
29
29
|
* @see https://opentelemetry.io/docs/specs/semconv/resource/deployment-environment/
|
|
30
30
|
*/
|
|
31
31
|
exports.ATTR_DEPLOYMENT_ENVIRONMENT_NAME = 'deployment.environment.name';
|
|
32
|
+
/**
|
|
33
|
+
* The SQS FIFO message group ID.
|
|
34
|
+
* Follows the `aws.sqs.*` namespace pattern established by `aws.sqs.queue.url`.
|
|
35
|
+
* @see https://opentelemetry.io/docs/specs/semconv/messaging/sqs/
|
|
36
|
+
*/
|
|
37
|
+
exports.ATTR_AWS_SQS_MESSAGE_GROUP_ID = 'aws.sqs.message_group_id';
|
|
32
38
|
// ---------------------------------------------------------------------------
|
|
33
39
|
// Contrail-custom attributes
|
|
34
40
|
// ---------------------------------------------------------------------------
|
package/package.json
CHANGED