Skip to content

Commit 556d357

Browse files
committed
eks metrics
1 parent 6d76df4 commit 556d357

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

app/containers/AWSGraphsContainer.tsx

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,7 @@ const AwsGraphsContainer: React.FC = React.memo(props => {
5050

5151
if (typeOfService === 'AWS/EC2') fetchAwsData(user, appIndex) ;
5252
if (typeOfService === 'AWS/ECS')fetchAwsEcsData(user, appIndex);
53-
if (typeOfService === 'AWS/EKS'){
54-
console.log("hi")
55-
fetchAwsEksData(user, appIndex)
56-
};
53+
if (typeOfService === 'AWS/EKS') fetchAwsEksData(user, appIndex)
5754
}, 10000)
5855
);
5956
} else {
@@ -62,10 +59,8 @@ const AwsGraphsContainer: React.FC = React.memo(props => {
6259

6360
if (typeOfService === 'AWS/EC2') fetchAwsData(user, appIndex) ;
6461
if (typeOfService === 'AWS/ECS') fetchAwsEcsData(user, appIndex);
65-
if (typeOfService === 'AWS/EKS'){
66-
console.log("hi")
67-
fetchAwsEksData(user, appIndex)
68-
};
62+
if (typeOfService === 'AWS/EKS') fetchAwsEksData(user, appIndex)
63+
6964
}
7065

7166
}, [awsLive]);

0 commit comments

Comments
 (0)