Skip to content
/ kibana Public
forked from elastic/kibana

Commit

Permalink
Use globe icon for "ext" span type on service map (elastic#63205)
Browse files Browse the repository at this point in the history
Both "external" and "ext" can be returned and should have the same icon.
  • Loading branch information
smith committed Apr 10, 2020
1 parent 89d24a0 commit 38aafdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ storiesOf('app/ServiceMap/Cytoscape', module)
}
},
{ data: { id: 'external', 'span.type': 'external' } },
{ data: { id: 'ext', 'span.type': 'ext' } },
{ data: { id: 'messaging', 'span.type': 'messaging' } },
{
data: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const defaultIcon = defaultIconImport;
const icons: { [key: string]: string } = {
cache: databaseIcon,
db: databaseIcon,
ext: globeIcon,
external: globeIcon,
messaging: documentsIcon,
resource: globeIcon
Expand Down

0 comments on commit 38aafdd

Please sign in to comment.