chore(slo): Remove context in aggregated data (#143318)

This commit is contained in:
Kevin Delemme 2022-10-18 13:10:35 -04:00 committed by GitHub
parent 137b4bd316
commit 8cb51bda55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 0 additions and 80 deletions

View file

@ -57,26 +57,6 @@ Object {
"field": "@timestamp",
},
},
"slo.context.service.environment": Object {
"terms": Object {
"field": "service.environment",
},
},
"slo.context.service.name": Object {
"terms": Object {
"field": "service.name",
},
},
"slo.context.transaction.name": Object {
"terms": Object {
"field": "transaction.name",
},
},
"slo.context.transaction.type": Object {
"terms": Object {
"field": "transaction.type",
},
},
"slo.id": Object {
"terms": Object {
"field": "slo.id",

View file

@ -62,26 +62,6 @@ Object {
"field": "@timestamp",
},
},
"slo.context.service.environment": Object {
"terms": Object {
"field": "service.environment",
},
},
"slo.context.service.name": Object {
"terms": Object {
"field": "service.name",
},
},
"slo.context.transaction.name": Object {
"terms": Object {
"field": "transaction.name",
},
},
"slo.context.transaction.type": Object {
"terms": Object {
"field": "transaction.type",
},
},
"slo.id": Object {
"terms": Object {
"field": "slo.id",

View file

@ -131,26 +131,6 @@ export class ApmTransactionDurationTransformGenerator implements TransformGenera
calendar_interval: '1m' as AggregationsCalendarInterval,
},
},
'slo.context.transaction.name': {
terms: {
field: 'transaction.name',
},
},
'slo.context.transaction.type': {
terms: {
field: 'transaction.type',
},
},
'slo.context.service.name': {
terms: {
field: 'service.name',
},
},
'slo.context.service.environment': {
terms: {
field: 'service.environment',
},
},
};
}

View file

@ -133,26 +133,6 @@ export class ApmTransactionErrorRateTransformGenerator implements TransformGener
calendar_interval: '1m' as AggregationsCalendarInterval,
},
},
'slo.context.transaction.name': {
terms: {
field: 'transaction.name',
},
},
'slo.context.transaction.type': {
terms: {
field: 'transaction.type',
},
},
'slo.context.service.name': {
terms: {
field: 'service.name',
},
},
'slo.context.service.environment': {
terms: {
field: 'service.environment',
},
},
};
}