Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv committed Nov 19, 2020
1 parent 7bb5f73 commit 5330cd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function ErrorCorrelations() {
const { data, status } = useFetcher(() => {
if (start && end) {
return callApmApi({
pathname: '/api/apm/correlations/failed_transactions',
endpoint: 'GET /api/apm/correlations/failed_transactions',
params: {
query: {
serviceName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export function LatencyCorrelations() {
const { data, status } = useFetcher(() => {
if (start && end) {
return callApmApi({
pathname: '/api/apm/correlations/slow_transactions',
endpoint: 'GET /api/apm/correlations/slow_transactions',
params: {
query: {
serviceName,
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/observability/typings/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type ObservabilityApp =
| 'infra_logs'
| 'apm'
| 'uptime'
| 'observability'
| 'observability-overview'
| 'stack_monitoring'
| 'ux';

Expand Down

0 comments on commit 5330cd3

Please sign in to comment.