diff --git a/web/src/main/webapp/WEB-INF/views/transactionInfo.jsp b/web/src/main/webapp/WEB-INF/views/transactionInfo.jsp index f7ce1c28e..350c9f143 100644 --- a/web/src/main/webapp/WEB-INF/views/transactionInfo.jsp +++ b/web/src/main/webapp/WEB-INF/views/transactionInfo.jsp @@ -508,6 +508,8 @@ 'UNKNOWN' : 'UNKNOWN.png', 'UNKNOWN_GROUP' : 'UNKNOWN.png', 'USER' : 'USER.png', + 'REDIS': 'REDIS.png', + 'NBASE_ARC': 'NBASE_ARC.png', 'ORACLE' : 'ORACLE.png' }, "htLinkTheme" : { diff --git a/web/src/main/webapp/components/pinpoint-servermap/js/jquery.ServerMap.js b/web/src/main/webapp/components/pinpoint-servermap/js/jquery.ServerMap.js index 1f0bd11d7..841bd2c55 100644 --- a/web/src/main/webapp/components/pinpoint-servermap/js/jquery.ServerMap.js +++ b/web/src/main/webapp/components/pinpoint-servermap/js/jquery.ServerMap.js @@ -38,6 +38,8 @@ 'TOMCAT': 'TOMCAT.png', 'UNKNOWN': 'UNKNOWN.png', 'UNKNOWN_CLOUD': 'UNKNOWN_CLOUD.png', + 'REDIS': 'REDIS.png', + 'NBASE_ARC': 'NBASE_ARC.png', 'USER': 'USER.png' }, "htNodeTheme": { diff --git a/web/src/main/webapp/components/pinpoint-servermap/js/jquery.ServerMap2.js b/web/src/main/webapp/components/pinpoint-servermap/js/jquery.ServerMap2.js index 60cafcb0a..4155115f1 100644 --- a/web/src/main/webapp/components/pinpoint-servermap/js/jquery.ServerMap2.js +++ b/web/src/main/webapp/components/pinpoint-servermap/js/jquery.ServerMap2.js @@ -47,6 +47,8 @@ 'TOMCAT': 'TOMCAT.png', 'UNKNOWN': 'UNKNOWN.png', 'UNKNOWN_GROUP': 'UNKNOWN_GROUP.png', + 'REDIS': 'REDIS.png', + 'NBASE_ARC': 'NBASE_ARC.png', 'USER': 'USER.png' }, "htNodeTheme": { diff --git a/web/src/main/webapp/components_v1/pinpoint-servermap/jquery.ServerMap.js b/web/src/main/webapp/components_v1/pinpoint-servermap/jquery.ServerMap.js index bec58c4a7..c31a0bcc9 100644 --- a/web/src/main/webapp/components_v1/pinpoint-servermap/jquery.ServerMap.js +++ b/web/src/main/webapp/components_v1/pinpoint-servermap/jquery.ServerMap.js @@ -16,6 +16,8 @@ var ServerMap = $.Class({ 'QUEUE' : 'QUEUE.png', 'TOMCAT' : 'TOMCAT.png', 'UNKNOWN_CLOUD' : 'UNKNOWN_CLOUD.png', + 'REDIS': 'REDIS.png', + 'NBASE_ARC': 'NBASE_ARC.png', 'USER' : 'USER.png' }, "htLinkType" : { diff --git a/web/src/main/webapp/components_v1/pinpoint/chart-servermap.js b/web/src/main/webapp/components_v1/pinpoint/chart-servermap.js index 57f171e49..507cceb59 100644 --- a/web/src/main/webapp/components_v1/pinpoint/chart-servermap.js +++ b/web/src/main/webapp/components_v1/pinpoint/chart-servermap.js @@ -417,6 +417,8 @@ var serverMapCallback = function(query, data, ignoreCache) { 'TOMCAT' : 'TOMCAT.png', 'UNKNOWN_CLOUD' : 'UNKNOWN_CLOUD.png', 'UNKNOWN_GROUP' : 'UNKNOWN_CLOUD.png', + 'REDIS': 'REDIS.png', + 'NBASE_ARC': 'NBASE_ARC.png', 'USER' : 'USER.png', 'ORACLE' : 'ORACLE.png' }, diff --git a/web/src/main/webapp/images/servermap/NBASE_ARC.png b/web/src/main/webapp/images/servermap/NBASE_ARC.png new file mode 100644 index 000000000..f25a35834 Binary files /dev/null and b/web/src/main/webapp/images/servermap/NBASE_ARC.png differ diff --git a/web/src/main/webapp/images/servermap/REDIS.png b/web/src/main/webapp/images/servermap/REDIS.png new file mode 100644 index 000000000..abb69c09e Binary files /dev/null and b/web/src/main/webapp/images/servermap/REDIS.png differ