-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
593 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
agent-bridge/src/main/java/com/newrelic/agent/bridge/CloudApi.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* | ||
* * Copyright 2024 New Relic Corporation. All rights reserved. | ||
* * SPDX-License-Identifier: Apache-2.0 | ||
* | ||
*/ | ||
|
||
package com.newrelic.agent.bridge; | ||
|
||
import com.newrelic.api.agent.Cloud; | ||
import com.newrelic.api.agent.CloudAccountInfo; | ||
|
||
/** | ||
* Internal Cloud API. This extends the public Cloud API and adds methods | ||
* for retrieving the data set by the public API methods. | ||
*/ | ||
public interface CloudApi extends Cloud { | ||
|
||
/** | ||
* Return the general account information of the provided type. | ||
* This data is either set by {@link Cloud#setAccountInfo(CloudAccountInfo, String)} | ||
* or the agent config. | ||
*/ | ||
String getAccountInfo(CloudAccountInfo cloudAccountInfo); | ||
|
||
/** | ||
* Retrieves the account information for a cloud service SDK client. | ||
* If no data was recorded for the SDK client, the general account information will be returned. | ||
*/ | ||
String getAccountInfo(Object sdkClient, CloudAccountInfo cloudAccountInfo); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
agent-bridge/src/main/java/com/newrelic/agent/bridge/NoOpCloud.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* | ||
* * Copyright 2024 New Relic Corporation. All rights reserved. | ||
* * SPDX-License-Identifier: Apache-2.0 | ||
* | ||
*/ | ||
|
||
package com.newrelic.agent.bridge; | ||
|
||
import com.newrelic.api.agent.CloudAccountInfo; | ||
|
||
public class NoOpCloud implements CloudApi { | ||
|
||
public static final CloudApi INSTANCE = new NoOpCloud(); | ||
|
||
private NoOpCloud() { | ||
// only instance should be the INSTANCE | ||
} | ||
|
||
@Override | ||
public void setAccountInfo(CloudAccountInfo cloudAccountInfo, String value) { | ||
} | ||
|
||
@Override | ||
public void setAccountInfo(Object sdkClient, CloudAccountInfo cloudAccountInfo, String value) { | ||
} | ||
|
||
@Override | ||
public String getAccountInfo(CloudAccountInfo cloudAccountInfo) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public String getAccountInfo(Object sdkClient, CloudAccountInfo cloudAccountInfo) { | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
94 changes: 94 additions & 0 deletions
94
newrelic-agent/src/main/java/com/newrelic/agent/cloud/CloudAccountInfoCache.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* | ||
* | ||
* * Copyright 2024 New Relic Corporation. All rights reserved. | ||
* * SPDX-License-Identifier: Apache-2.0 | ||
* | ||
*/ | ||
|
||
package com.newrelic.agent.cloud; | ||
|
||
import com.github.benmanes.caffeine.cache.Caffeine; | ||
import com.github.benmanes.caffeine.cache.LoadingCache; | ||
import com.newrelic.agent.MetricNames; | ||
import com.newrelic.agent.config.AgentConfig; | ||
import com.newrelic.agent.service.ServiceFactory; | ||
import com.newrelic.api.agent.CloudAccountInfo; | ||
import com.newrelic.api.agent.NewRelic; | ||
|
||
import java.util.Collections; | ||
import java.util.EnumMap; | ||
import java.util.Map; | ||
import java.util.logging.Level; | ||
|
||
/** | ||
* This class implements the account info methods from the Cloud API. | ||
*/ | ||
public class CloudAccountInfoCache { | ||
private final LoadingCache<Object, Map<CloudAccountInfo, String>> cache; | ||
// this object is used to store data that is not related to a specific sdk client | ||
private static final Object NULL_CLIENT = new Object(); | ||
|
||
CloudAccountInfoCache() { | ||
cache = Caffeine.newBuilder() | ||
.initialCapacity(4) | ||
.weakKeys() | ||
.executor(Runnable::run) | ||
.build((key) -> Collections.synchronizedMap(new EnumMap<>(CloudAccountInfo.class))); | ||
} | ||
|
||
public void setAccountInfo(CloudAccountInfo cloudAccountInfo, String value) { | ||
setAccountInfo(NULL_CLIENT, cloudAccountInfo, value); | ||
} | ||
|
||
public void setAccountInfo(Object sdkClient, CloudAccountInfo cloudAccountInfo, String value) { | ||
if (sdkClient == null) { | ||
return; | ||
} | ||
if (value == null) { | ||
Map<CloudAccountInfo, String> accountInfo = cache.getIfPresent(sdkClient); | ||
if (accountInfo != null) { | ||
accountInfo.remove(cloudAccountInfo); | ||
} | ||
return; | ||
} | ||
if (CloudAccountInfoValidator.validate(cloudAccountInfo, value)) { | ||
Map<CloudAccountInfo, String> accountInfo = cache.get(sdkClient); | ||
accountInfo.put(cloudAccountInfo, value); | ||
} | ||
} | ||
|
||
public String getAccountInfo(CloudAccountInfo cloudAccountInfo) { | ||
Map<CloudAccountInfo, String> accountInfo = cache.getIfPresent(NULL_CLIENT); | ||
if (accountInfo == null) { | ||
return null; | ||
} | ||
return accountInfo.get(cloudAccountInfo); | ||
} | ||
|
||
public String getAccountInfo(Object sdkClient, CloudAccountInfo cloudAccountInfo) { | ||
if (sdkClient == null) { | ||
return getAccountInfo(cloudAccountInfo); | ||
} | ||
Map<CloudAccountInfo, String> accountInfo = cache.getIfPresent(sdkClient); | ||
if (accountInfo == null) { | ||
return getAccountInfo(cloudAccountInfo); | ||
} | ||
return accountInfo.get(cloudAccountInfo); | ||
} | ||
|
||
void retrieveDataFromConfig() { | ||
AgentConfig agentConfig = ServiceFactory.getConfigService().getDefaultAgentConfig(); | ||
retrieveAwsAccountId(agentConfig); | ||
} | ||
|
||
private void retrieveAwsAccountId(AgentConfig agentConfig) { | ||
Object awsAccountId = agentConfig.getValue("cloud.aws.account_id"); | ||
if (awsAccountId == null) { | ||
return; | ||
} | ||
|
||
NewRelic.getAgent().getLogger().log(Level.INFO, "Found AWS account ID configuration."); | ||
NewRelic.incrementCounter(MetricNames.SUPPORTABILITY_CONFIG_AWS_ACCOUNT_ID); | ||
setAccountInfo(CloudAccountInfo.AWS_ACCOUNT_ID, awsAccountId.toString()); | ||
} | ||
} |
47 changes: 47 additions & 0 deletions
47
newrelic-agent/src/main/java/com/newrelic/agent/cloud/CloudAccountInfoValidator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* | ||
* * Copyright 2024 New Relic Corporation. All rights reserved. | ||
* * SPDX-License-Identifier: Apache-2.0 | ||
* | ||
*/ | ||
|
||
package com.newrelic.agent.cloud; | ||
|
||
import com.newrelic.api.agent.CloudAccountInfo; | ||
import com.newrelic.api.agent.NewRelic; | ||
|
||
import java.util.logging.Level; | ||
import java.util.regex.Pattern; | ||
|
||
public class CloudAccountInfoValidator { | ||
|
||
private static final Pattern AWS_ACCOUNT_ID_PATTERN = Pattern.compile("^\\d+$"); | ||
private static Level awsAccountIdLogLevel = Level.WARNING; | ||
|
||
public static boolean validate(CloudAccountInfo cloudAccountInfo, String value) { | ||
switch (cloudAccountInfo) { | ||
case AWS_ACCOUNT_ID: | ||
return validateAwsAccountId(value); | ||
default: | ||
return false; | ||
} | ||
} | ||
|
||
private static boolean validateAwsAccountId(String accountId) { | ||
final int AWS_ACCOUNT_ID_LENGTH = 12; | ||
if (accountId == null) { | ||
return false; | ||
} | ||
boolean valid = accountId.length() == AWS_ACCOUNT_ID_LENGTH && | ||
AWS_ACCOUNT_ID_PATTERN.matcher(accountId).matches(); | ||
if (!valid) { | ||
NewRelic.getAgent().getLogger().log(awsAccountIdLogLevel, "AWS account ID should be a 12-digit number."); | ||
awsAccountIdLogLevel = Level.FINEST; | ||
} | ||
return valid; | ||
} | ||
|
||
private CloudAccountInfoValidator() { | ||
// prevents instantiation | ||
} | ||
} |
61 changes: 61 additions & 0 deletions
61
newrelic-agent/src/main/java/com/newrelic/agent/cloud/CloudApiImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* | ||
* * Copyright 2024 New Relic Corporation. All rights reserved. | ||
* * SPDX-License-Identifier: Apache-2.0 | ||
* | ||
*/ | ||
|
||
package com.newrelic.agent.cloud; | ||
|
||
import com.newrelic.agent.MetricNames; | ||
import com.newrelic.agent.bridge.AgentBridge; | ||
import com.newrelic.agent.bridge.CloudApi; | ||
import com.newrelic.api.agent.CloudAccountInfo; | ||
|
||
/** | ||
* Facade for the Cloud API. | ||
*/ | ||
public class CloudApiImpl implements CloudApi { | ||
|
||
private final CloudAccountInfoCache accountInfoCache; | ||
|
||
private CloudApiImpl() { | ||
this(new CloudAccountInfoCache()); | ||
accountInfoCache.retrieveDataFromConfig(); | ||
} | ||
|
||
// for testing | ||
CloudApiImpl(CloudAccountInfoCache accountInfoCache) { | ||
this.accountInfoCache = accountInfoCache; | ||
} | ||
|
||
// calling this method more than once will invalidate any Cloud API calls to set account info | ||
public static void initialize() { | ||
AgentBridge.cloud = new CloudApiImpl(); | ||
} | ||
|
||
@Override | ||
public void setAccountInfo(CloudAccountInfo cloudAccountInfo, String value) { | ||
MetricNames.recordApiSupportabilityMetric(MetricNames.SUPPORTABILITY_API_CLOUD_SET_ACCOUNT_INFO + cloudAccountInfo.toString()); | ||
accountInfoCache.setAccountInfo(cloudAccountInfo, value); | ||
} | ||
|
||
@Override | ||
public void setAccountInfo(Object sdkClient, CloudAccountInfo cloudAccountInfo, String value) { | ||
MetricNames.recordApiSupportabilityMetric(MetricNames.SUPPORTABILITY_API_CLOUD_SET_ACCOUNT_INFO_CLIENT + cloudAccountInfo.toString()); | ||
accountInfoCache.setAccountInfo(sdkClient, cloudAccountInfo, value); | ||
} | ||
|
||
@Override | ||
public String getAccountInfo(CloudAccountInfo cloudAccountInfo) { | ||
// not recording metrics because this is for the internal API | ||
return accountInfoCache.getAccountInfo(cloudAccountInfo); | ||
} | ||
|
||
@Override | ||
public String getAccountInfo(Object sdkClient, CloudAccountInfo cloudAccountInfo) { | ||
// not recording metrics because this is for the internal API | ||
return accountInfoCache.getAccountInfo(sdkClient, cloudAccountInfo); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.