Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c084d19 commit aa5b5fbCopy full SHA for aa5b5fb
‎packages/shared/src/server/otel/OtelIngestionProcessor.ts‎
@@ -1131,12 +1131,12 @@ export class OtelIngestionProcessor {
1131
];
1132
1133
for (const key of environmentAttributeKeys) {
1134
- if (resourceAttributes[key]) {
1135
- return resourceAttributes[key] as string;
1136
- }
1137
if (attributes[key]) {
1138
return attributes[key] as string;
1139
}
+ if (resourceAttributes[key]) {
+ return resourceAttributes[key] as string;
+ }
1140
1141
1142
return "default";
0 commit comments