古巴平台的应用洞察

Application Insights in Cuba Platform

我正在尝试在古巴平台中使用 Azure Application Insight:https://docs.microsoft.com/en-us/azure/application-insights/app-insights-java-get-started

我设法将库添加到 Cuba 平台,特别是 Web 模块,但我无法以任何方式设置 "Instrumentation key"。

可以通过三种方式实现:

1- 将 ApplicationInsights.xml 放入 "resource" 文件夹

我找不到放置要由 TelemetryConfigurationFactory 读取的文件的地方 class。在内部,我看到它正在使用 getResource() 在各个 "sensible" 位置进行扫描。 我尝试了 WEB-INF、META-INF、Tomcat、conf/app 中的 conf 目录、java 包的根目录、Tomcat 中的 work/app 以及可能更多的东西没有结果。

2- 系统 属性: -DAPPLICATION_INSIGHTS_IKEY=your_ikey

3- 环境变量:APPLICATION_INSIGHTS_IKEY

在 docker 容器中都试过了,在本地试了最后一个:没有结果。特别是,即使在本地手动导出变量后,System.getEnv 也会返回 null,所以这可能是我这边的一些错误

欢迎任何见解:D

我试图从 Application Insights source code 中搜索 Instrumentation 密钥的配置。

我可以在 TelemetryConfigurationFactory Class.

中看到如下代码片段
/**
     * Setting an instrumentation key:
     * First we try the system property '-DAPPLICATION_INSIGHTS_IKEY=i_key' or '-DAPPINSIGHTS_INSTRUMENTATIONKEY=i_key'
     * Next we will try the environment variable 'APPLICATION_INSIGHTS_IKEY' or 'APPINSIGHTS_INSTRUMENTATIONKEY'
     * Next we will try to fetch the i-key from the ApplicationInsights.xml
     * @param userConfiguration The configuration that was represents the user's configuration in ApplicationInsights.xml.
     * @param configuration The configuration class.
     */
    private void setInstrumentationKey(ApplicationInsightsXmlConfiguration userConfiguration, TelemetryConfiguration configuration) {
        try {
            String ikey;

            // First, check whether an i-key was provided as a java system property i.e. '-DAPPLICATION_INSIGHTS_IKEY=i_key', or '-DAPPINSIGHTS_INSTRUMENTATIONKEY=i_key'
            ikey = System.getProperty(EXTERNAL_PROPERTY_IKEY_NAME);
            if (!Strings.isNullOrEmpty(ikey)) {
                configuration.setInstrumentationKey(ikey);
                return;
            }
            ikey = System.getProperty(EXTERNAL_PROPERTY_IKEY_NAME_SECONDARY);
            if (!Strings.isNullOrEmpty(ikey)) {
                configuration.setInstrumentationKey(ikey);
                return;
            }

            // Second, try to find the i-key as an environment variable 'APPLICATION_INSIGHTS_IKEY' or 'APPINSIGHTS_INSTRUMENTATIONKEY'
            ikey = System.getenv(EXTERNAL_PROPERTY_IKEY_NAME);
            if (!Strings.isNullOrEmpty(ikey)) {
                configuration.setInstrumentationKey(ikey);
                return;
            }
            ikey = System.getenv(EXTERNAL_PROPERTY_IKEY_NAME_SECONDARY);
            if (!Strings.isNullOrEmpty(ikey)) {
                configuration.setInstrumentationKey(ikey);
                return;
            }

            // Else, try to find the i-key in ApplicationInsights.xml
            if (userConfiguration != null) {
                ikey = userConfiguration.getInstrumentationKey();
                if (ikey == null) {
                    return;
                }

                ikey = ikey.trim();
                if (ikey.length() == 0) {
                    return;
                }

                configuration.setInstrumentationKey(ikey);
            }
        } catch (Exception e) {
            InternalLogger.INSTANCE.error("Failed to set instrumentation key: '%s'", e.getMessage());
        }
    }

Instrumentation 密钥似乎可以配置为 java system propertyenvironment variableApplicationInsights.xml

根据您的描述,您代码中的 System.getEnv("XXX") return 为空。 您可以检查以下可能的原因:

  1. 使用我的电脑 > 高级 > 环境变量使变量对所有新进程可见。

    2.The 试图读取变量的进程已经是 运行。重新启动它。

    3.The Tomcat 的启动脚本在调用 java.exe

    之前取消设置变量

    4.Tomcat 取消设置其 Java 代码中的变量。

此外,您可以参考这个帖子:

希望对你有帮助。