Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[APM] Add kuery to apm ui #19469

Merged
merged 28 commits into from
Jul 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d8276a0
Add Kuery to APM UI
sorenlouv May 28, 2018
f44b04c
Format bool queries
sorenlouv May 28, 2018
594fb1c
Fix test
sorenlouv May 28, 2018
b480b4f
Add min-height
sorenlouv May 28, 2018
a76d82a
Updated css to vars
sorenlouv May 29, 2018
905ebe7
Added loading indicators
sorenlouv May 29, 2018
28ebf57
Update breadcrumbs
sorenlouv May 29, 2018
e6f58ca
Update Discover links
sorenlouv May 29, 2018
9758127
Add search button
sorenlouv May 29, 2018
a487014
Fix readcrumb test
sorenlouv May 29, 2018
4a4cd7e
Remove debounce
sorenlouv May 29, 2018
264c815
Fix “undefined” kuery
sorenlouv Jun 6, 2018
0afc8e7
Handle missing index pattern
sorenlouv Jun 6, 2018
638e19f
Fix race condition in data fetching
sorenlouv Jun 6, 2018
c29ac9a
Fix legacy url encoding
sorenlouv Jun 7, 2018
6b7d2ab
Filter out field-suggestions starting with "span*"
sorenlouv Jul 4, 2018
775eb9f
Convert KuiTable to EuiTable for service overview
sorenlouv Jul 8, 2018
0dfd1fb
Convert KuiTable to EuiTable for transaction overview
sorenlouv Jul 8, 2018
3f0e2bc
Convert KuiTable to EuiTable for error overview
sorenlouv Jul 8, 2018
61a600b
Updated empty state messages
sorenlouv Jul 8, 2018
ba563d8
Bump CI jo
sorenlouv Jul 9, 2018
4e9ca7b
updated snapshots
sorenlouv Jul 9, 2018
aae6f5f
Add beta tooltip and update to EuiSearch
sorenlouv Jul 9, 2018
112af2e
Fixed issue with focus
sorenlouv Jul 9, 2018
7704b1a
Submit when clicking search button
sorenlouv Jul 9, 2018
a302c2c
Submit when clearing input
sorenlouv Jul 10, 2018
7ed2fad
Handle missing index pattern
sorenlouv Jul 10, 2018
863a8d6
Remove query from spans
sorenlouv Jul 10, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/ui/public/index_patterns/static_utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ export function isFilterable(field) {
}

export function getFromSavedObject(savedObject) {
if (!savedObject) {
return null;
}

return {
fields: JSON.parse(savedObject.attributes.fields),
title: savedObject.attributes.title,
Expand Down
1 change: 1 addition & 0 deletions x-pack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
"pivotal-ui": "13.0.1",
"pluralize": "3.1.0",
"pngjs": "3.3.1",
"polished": "^1.9.2",
"prop-types": "^15.6.0",
"puid": "1.0.5",
"react": "^16.3.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ function DetailView({ errorGroup, urlParams, location }) {
interval: 'auto',
query: {
language: 'lucene',
query: `${SERVICE_NAME}:"${serviceName}" AND ${ERROR_GROUP_ID}:${groupId}`
query: `${SERVICE_NAME}:"${serviceName}" AND ${ERROR_GROUP_ID}:${groupId}${
urlParams.kuery ? ` AND ${urlParams.kuery}` : ``
}`
},
sort: { '@timestamp': 'desc' }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { get } from 'lodash';
import { HeaderLarge } from '../../shared/UIComponents';
import DetailView from './DetailView';
import Distribution from './Distribution';
import { KueryBar } from '../../shared/KueryBar';

import { EuiText, EuiBadge } from '@elastic/eui';
import {
Expand Down Expand Up @@ -86,6 +87,8 @@ function ErrorGroupDetails({ urlParams, location }) {
)}
</HeaderLarge>

<KueryBar />

{showDetails && (
<Titles>
<EuiText>
Expand Down

This file was deleted.

Loading