-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 160425-restore-dataset-selection
- Loading branch information
Showing
14 changed files
with
177 additions
and
196 deletions.
There are no files selected for viewing
Binary file added
BIN
+160 KB
docs/management/connectors/images/pre-configured-alert-history-connector.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-250 KB
docs/user/alerting/images/pre-configured-alert-history-connector.png
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+10.5 KB
(110%)
docs/user/alerting/images/rule-types-index-threshold-example-action.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions
49
...ns/apm/ftr_e2e/cypress/e2e/read_only_user/dependency_operation/dependency_operation.cy.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import url from 'url'; | ||
import { synthtrace } from '../../../../synthtrace'; | ||
import { opbeans } from '../../../fixtures/synthtrace/opbeans'; | ||
|
||
const start = '2021-10-10T00:00:00.000Z'; | ||
const end = '2021-10-10T00:15:00.000Z'; | ||
|
||
const dependencyOperationHref = url.format({ | ||
pathname: '/app/apm/dependencies/operation', | ||
query: { | ||
dependencyName: 'postgresql', | ||
spanName: 'SELECT * FROM product', | ||
environment: 'ENVIRONMENT_ALL', | ||
rangeFrom: start, | ||
rangeTo: end, | ||
}, | ||
}); | ||
|
||
describe('Dependency operation', () => { | ||
before(() => { | ||
synthtrace.index( | ||
opbeans({ | ||
from: new Date(start).getTime(), | ||
to: new Date(end).getTime(), | ||
}) | ||
); | ||
}); | ||
|
||
after(() => { | ||
synthtrace.clean(); | ||
}); | ||
|
||
beforeEach(() => { | ||
cy.loginAsViewerUser(); | ||
}); | ||
|
||
it('opens the action menu popup when clicking the investigate button', () => { | ||
cy.visitKibana(dependencyOperationHref); | ||
cy.getByTestSubj('apmActionMenuButtonInvestigateButton').click(); | ||
cy.getByTestSubj('apmActionMenuInvestigateButtonPopup'); | ||
}); | ||
}); |
47 changes: 47 additions & 0 deletions
47
...ck/plugins/apm/ftr_e2e/cypress/e2e/read_only_user/mobile/mobile_transaction_details.cy.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import url from 'url'; | ||
import { synthtrace } from '../../../../synthtrace'; | ||
import { generateMobileData } from './generate_data'; | ||
|
||
const start = '2021-10-10T00:00:00.000Z'; | ||
const end = '2021-10-10T00:15:00.000Z'; | ||
|
||
const mobileTransactionDetailsPageHref = url.format({ | ||
pathname: '/app/apm/mobile-services/synth-android/transactions/view', | ||
query: { | ||
rangeFrom: start, | ||
rangeTo: end, | ||
transactionName: 'Start View - View Appearing', | ||
}, | ||
}); | ||
|
||
describe('Mobile transaction details page', () => { | ||
before(() => { | ||
synthtrace.index( | ||
generateMobileData({ | ||
from: new Date(start).getTime(), | ||
to: new Date(end).getTime(), | ||
}) | ||
); | ||
}); | ||
|
||
beforeEach(() => { | ||
cy.loginAsViewerUser(); | ||
}); | ||
|
||
after(() => { | ||
synthtrace.clean(); | ||
}); | ||
|
||
it('opens the action menu popup when clicking the investigate button', () => { | ||
cy.visitKibana(mobileTransactionDetailsPageHref); | ||
cy.getByTestSubj('apmActionMenuButtonInvestigateButton').click(); | ||
cy.getByTestSubj('apmActionMenuInvestigateButtonPopup'); | ||
}); | ||
}); |
51 changes: 51 additions & 0 deletions
51
x-pack/plugins/apm/ftr_e2e/cypress/e2e/read_only_user/trace_explorer/trace_explorer.cy.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import url from 'url'; | ||
import { synthtrace } from '../../../../synthtrace'; | ||
import { opbeans } from '../../../fixtures/synthtrace/opbeans'; | ||
|
||
const start = '2021-10-10T00:00:00.000Z'; | ||
const end = '2021-10-10T00:15:00.000Z'; | ||
|
||
const traceExplorerHref = url.format({ | ||
pathname: '/app/apm/traces/explorer', | ||
query: { | ||
environment: 'ENVIRONMENT_ALL', | ||
rangeFrom: start, | ||
rangeTo: end, | ||
}, | ||
}); | ||
|
||
describe('Trace Explorer', () => { | ||
before(() => { | ||
synthtrace.index( | ||
opbeans({ | ||
from: new Date(start).getTime(), | ||
to: new Date(end).getTime(), | ||
}) | ||
); | ||
|
||
cy.updateAdvancedSettings({ | ||
'observability:apmTraceExplorerTab': true, | ||
}); | ||
}); | ||
|
||
after(() => { | ||
synthtrace.clean(); | ||
}); | ||
|
||
beforeEach(() => { | ||
cy.loginAsViewerUser(); | ||
}); | ||
|
||
it('opens the action menu popup when clicking the investigate button', () => { | ||
cy.visitKibana(traceExplorerHref); | ||
cy.getByTestSubj('apmActionMenuButtonInvestigateButton').click(); | ||
cy.getByTestSubj('apmActionMenuInvestigateButtonPopup'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.