Skip to content

Commit

Permalink
chore(slo): unset ecs usage for burn rate rule (#155466)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdelemme authored Apr 25, 2023
1 parent 880d1f2 commit 7761e27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function sloBurnRateRuleType(
alerts: {
context: SLO_RULE_REGISTRATION_CONTEXT,
mappings: { fieldMap: { ...legacyExperimentalFieldMap, ...sloRuleFieldMap } },
useEcs: true,
useEcs: false,
useLegacyAlerts: true,
},
};
Expand Down
4 changes: 2 additions & 2 deletions x-pack/test/api_integration/apis/maps/maps_telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export default function ({ getService }: FtrProviderContext) {
return fieldStat.name === 'geo_point';
}
);
expect(geoPointFieldStats.count).to.be(39);
expect(geoPointFieldStats.index_count).to.be(10);
expect(geoPointFieldStats.count).to.be(31);
expect(geoPointFieldStats.index_count).to.be(9);

const geoShapeFieldStats = apiResponse.cluster_stats.indices.mappings.field_types.find(
(fieldStat: estypes.ClusterStatsFieldTypes) => {
Expand Down

0 comments on commit 7761e27

Please sign in to comment.