<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to integrate AppDynamcis APM to monitor .NET Core 2.0 Docker Container Application on Linux? in Splunk AppDynamics</title>
    <link>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732950#M8228</link>
    <description>&lt;P&gt;I am hoping someone from AppDynamics respond to the thread!&lt;/P&gt;

&lt;P&gt;Here is what I did to gain more control over OS, Runtimes, etc.-&lt;/P&gt;

&lt;P&gt;Created my own image to comply with AppD requirement on OS.&lt;/P&gt;
&lt;P&gt;Got ubuntu 18.04, installed all the prerequisits and installed dotnetcore runtime following this link&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites?tabs=netcore2x" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites?tabs=netcore2x&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Then, I went to Visual Studio 2017 and updated my dockerfile to use the modified image (ubuntu:prodip). It builds fine and my ASP.NET Core application works like magic! Still AppD instrumentation does not work and I don't see any logs or errors!&lt;/P&gt;

&lt;P&gt;FROM ubuntu:18.04&lt;/P&gt;
&lt;P&gt;# Install required packages&lt;/P&gt;
&lt;P&gt;RUN apt-get update &amp;amp;&amp;amp; \&lt;BR /&gt; apt-get upgrade -y &amp;amp;&amp;amp; \&lt;BR /&gt; apt-get install -y unzip &amp;amp;&amp;amp; \&lt;BR /&gt; apt-get clean&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;RUN apt-get install -y sudo&lt;BR /&gt;RUN apt-get install -y wget&lt;BR /&gt;RUN apt-get install -y curl&lt;/P&gt;
&lt;P&gt;RUN wget -q &lt;A href="https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb" target="_blank" rel="nofollow noopener noreferrer"&gt;https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb&lt;/A&gt;&lt;BR /&gt;RUN sudo dpkg -i packages-microsoft-prod.deb&lt;/P&gt;
&lt;P&gt;RUN sudo apt-get install apt-transport-https&lt;/P&gt;
&lt;P&gt;RUN sudo apt-get update&lt;/P&gt;
&lt;P&gt;#RUN sudo apt-get install liblttng-ust0&lt;BR /&gt;#RUN sudo apt-get install libcurl3&lt;BR /&gt;RUN sudo apt-get install libssl1.0.0&lt;BR /&gt;#RUN sudo apt-get install libkrb5-3&lt;BR /&gt;#RUN sudo apt-get install zlib1g&lt;BR /&gt;RUN sudo apt-get install libicu60&lt;/P&gt;
&lt;P&gt;RUN sudo apt-get install libunwind8&lt;BR /&gt;RUN sudo apt-get install libuuid1&lt;BR /&gt;RUN sudo apt-get update&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;COPY ./dotnet-install.sh .&lt;/P&gt;
&lt;P&gt;RUN sudo ./dotnet-install.sh --channel 2.0 --install-dir ~/cli&lt;/P&gt;
&lt;P&gt;ENV PATH="/root/cli:${PATH}"&lt;/P&gt;

&lt;P&gt;#run this command to build the image&lt;/P&gt;
&lt;P&gt;#docker build -t ubuntu:prodip .&lt;/P&gt;

&lt;P&gt;This is the updated dockerfile used to build the app in Visual Studio:&lt;/P&gt;
&lt;P&gt;FROM ubuntu:prodip&lt;BR /&gt;ARG source&lt;BR /&gt;WORKDIR /app&lt;BR /&gt;ENV ASPNETCORE_URLS=http://+:80&lt;/P&gt;
&lt;P&gt;ENV COR_ENABLE_PROFILING="1"&lt;BR /&gt;ENV COR_PROFILER="{57e1aa68-2229-41aa-9931-a6e93bbc64d8}"&lt;BR /&gt;ENV COR_PROFILER_PATH="/app/runtimes/linux-x64/native/libappdprofiler.so"&lt;/P&gt;
&lt;P&gt;EXPOSE 80&lt;BR /&gt;COPY ${source:-obj/Docker/publish} .&lt;BR /&gt;ENTRYPOINT ["dotnet", "gdt.api.demo.dotnetcore.dll"]&lt;/P&gt;

&lt;P&gt;I do bin/bash into the container and here is what I see for OS version metadata:&lt;/P&gt;
&lt;P&gt;root@830f31b00d37:/# cat /etc/*release&lt;BR /&gt;DISTRIB_ID=Ubuntu&lt;BR /&gt;DISTRIB_RELEASE=18.04&lt;BR /&gt;DISTRIB_CODENAME=bionic&lt;BR /&gt;DISTRIB_DESCRIPTION="Ubuntu 18.04.1 LTS"&lt;BR /&gt;NAME="Ubuntu"&lt;BR /&gt;VERSION="18.04.1 LTS (Bionic Beaver)"&lt;BR /&gt;ID=ubuntu&lt;BR /&gt;ID_LIKE=debian&lt;BR /&gt;PRETTY_NAME="Ubuntu 18.04.1 LTS"&lt;BR /&gt;VERSION_ID="18.04"&lt;BR /&gt;HOME_URL="&lt;A href="https://www.ubuntu.com/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.ubuntu.com/&lt;/A&gt;"&lt;BR /&gt;SUPPORT_URL="&lt;A href="https://help.ubuntu.com/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://help.ubuntu.com/&lt;/A&gt;"&lt;BR /&gt;BUG_REPORT_URL="&lt;A href="https://bugs.launchpad.net/ubuntu/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://bugs.launchpad.net/ubuntu/&lt;/A&gt;"&lt;BR /&gt;PRIVACY_POLICY_URL="&lt;A href="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.ubuntu.com/legal/terms-and-policies/privacy-policy&lt;/A&gt;"&lt;BR /&gt;VERSION_CODENAME=bionic&lt;BR /&gt;UBUNTU_CODENAME=bionic&lt;BR /&gt;root@830f31b00d37:/#&lt;/P&gt;

&lt;P&gt;My ENV variables include AppD stuff. Don't know if PWD and OLDPDW has anything to do with my changes!&lt;/P&gt;
&lt;P&gt;COR_PROFILER={57e1aa68-2229-41aa-9931-a6e93bbc64d8}&lt;BR /&gt;HOSTNAME=830f31b00d37&lt;BR /&gt;COR_ENABLE_PROFILING=1&lt;BR /&gt;ASPNETCORE_URLS=http://+:80&lt;BR /&gt;COR_PROFILER_PATH=/app/runtimes/linux-x64/native/libappdprofiler.so&lt;BR /&gt;PWD=/&lt;BR /&gt;HOME=/root&lt;BR /&gt;TERM=xterm&lt;BR /&gt;SHLVL=1&lt;BR /&gt;PATH=/root/cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin&lt;BR /&gt;_=/usr/bin/env&lt;BR /&gt;OLDPWD=/app/runtimes/linux-x64/native&lt;/P&gt;

&lt;P&gt;&lt;SPAN&gt;libappdprofiler.so is found in the expected location:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;root@830f31b00d37:/# cd /app/runtimes/linux-x64/native&lt;BR /&gt;root@830f31b00d37:/app/runtimes/linux-x64/native# ls&lt;BR /&gt;libappdprofiler.so&lt;BR /&gt;root@830f31b00d37:/app/runtimes/linux-x64/native#&lt;/P&gt;

&lt;P&gt;AppD- Can you help?&lt;/P&gt;</description>
    <pubDate>Fri, 17 Aug 2018 16:58:37 GMT</pubDate>
    <dc:creator>CommunityUser</dc:creator>
    <dc:date>2018-08-17T16:58:37Z</dc:date>
    <item>
      <title>How to integrate AppDynamcis APM to monitor .NET Core 2.0 Docker Container Application on Linux?</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732949#M8227</link>
      <description>&lt;P&gt;Hello AppD Community!&lt;/P&gt;
&lt;P&gt;I am trying to integrate my POC app with AppDynamics and it is not working. Don't have clue where to looks for logs which will tell me why! This app is docker build and running on Linux(Ubuntu).&lt;/P&gt;

&lt;P&gt;Tried to follow the instructions at&amp;nbsp;&lt;A href="https://docs.appdynamics.com/display/PRO45/.NET+Core+for+Linux+SDK" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.appdynamics.com/display/PRO45/.NET+Core+for+Linux+SDK&lt;/A&gt; and&amp;nbsp;&lt;A href="https://docs.appdynamics.com/display/PRO45/Using+.NET+Core+for+Linux+SDK" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.appdynamics.com/display/PRO45/Using+.NET+Core+for+Linux+SDK&lt;/A&gt; but the profiler does not seem to be working. Here is my docker file-&lt;/P&gt;

&lt;P&gt;FROM microsoft/aspnetcore:2.0&lt;BR /&gt;ARG source&lt;BR /&gt;WORKDIR /app&lt;BR /&gt;ENV ASPNETCORE_URLS=http://+:80&lt;/P&gt;
&lt;P&gt;ENV COR_ENABLE_PROFILING="1"&lt;BR /&gt;ENV COR_PROFILER="{57e1aa68-2229-41aa-9931-a6e93bbc64d8}"&lt;BR /&gt;ENV COR_PROFILER_PATH="/app/runtimes/linux-x64/native/libappdprofiler.so"&lt;/P&gt;
&lt;P&gt;EXPOSE 80&lt;BR /&gt;COPY ${source:-obj/Docker/publish} .&lt;BR /&gt;ENTRYPOINT ["dotnet", "gdt.api.demo.dotnetcore.dll"]&lt;/P&gt;

&lt;P&gt;After i build the container, I run it at the commnad line and application is running fine but nothing appears at AppD controller. I go inside the container to verify if the profiler is at the location specified and it is there.&lt;/P&gt;
&lt;P&gt;docker exec -i -t b99c78cae880 /bin/bash&lt;/P&gt;
&lt;P&gt;root@b99c78cae880:/app/runtimes/linux-x64/native# ls&lt;BR /&gt;libappdprofiler.so&lt;/P&gt;

&lt;P&gt;I was able to instument AppD with the same .Net Core app but it was deployed in Windows container. I need to monitor the app in Azure Kubernetes where host is Linux. I instrumented AppD machine agents and they are running great in Kubernetes PODs (see attached image) but I can't get to monitor the App!&lt;/P&gt;

&lt;P&gt;Thanks for taking time to read and comment on my question.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 22:13:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732949#M8227</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2018-08-14T22:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate AppDynamcis APM to monitor .NET Core 2.0 Docker Container Application on Linux?</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732950#M8228</link>
      <description>&lt;P&gt;I am hoping someone from AppDynamics respond to the thread!&lt;/P&gt;

&lt;P&gt;Here is what I did to gain more control over OS, Runtimes, etc.-&lt;/P&gt;

&lt;P&gt;Created my own image to comply with AppD requirement on OS.&lt;/P&gt;
&lt;P&gt;Got ubuntu 18.04, installed all the prerequisits and installed dotnetcore runtime following this link&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites?tabs=netcore2x" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites?tabs=netcore2x&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Then, I went to Visual Studio 2017 and updated my dockerfile to use the modified image (ubuntu:prodip). It builds fine and my ASP.NET Core application works like magic! Still AppD instrumentation does not work and I don't see any logs or errors!&lt;/P&gt;

&lt;P&gt;FROM ubuntu:18.04&lt;/P&gt;
&lt;P&gt;# Install required packages&lt;/P&gt;
&lt;P&gt;RUN apt-get update &amp;amp;&amp;amp; \&lt;BR /&gt; apt-get upgrade -y &amp;amp;&amp;amp; \&lt;BR /&gt; apt-get install -y unzip &amp;amp;&amp;amp; \&lt;BR /&gt; apt-get clean&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;RUN apt-get install -y sudo&lt;BR /&gt;RUN apt-get install -y wget&lt;BR /&gt;RUN apt-get install -y curl&lt;/P&gt;
&lt;P&gt;RUN wget -q &lt;A href="https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb" target="_blank" rel="nofollow noopener noreferrer"&gt;https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb&lt;/A&gt;&lt;BR /&gt;RUN sudo dpkg -i packages-microsoft-prod.deb&lt;/P&gt;
&lt;P&gt;RUN sudo apt-get install apt-transport-https&lt;/P&gt;
&lt;P&gt;RUN sudo apt-get update&lt;/P&gt;
&lt;P&gt;#RUN sudo apt-get install liblttng-ust0&lt;BR /&gt;#RUN sudo apt-get install libcurl3&lt;BR /&gt;RUN sudo apt-get install libssl1.0.0&lt;BR /&gt;#RUN sudo apt-get install libkrb5-3&lt;BR /&gt;#RUN sudo apt-get install zlib1g&lt;BR /&gt;RUN sudo apt-get install libicu60&lt;/P&gt;
&lt;P&gt;RUN sudo apt-get install libunwind8&lt;BR /&gt;RUN sudo apt-get install libuuid1&lt;BR /&gt;RUN sudo apt-get update&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;COPY ./dotnet-install.sh .&lt;/P&gt;
&lt;P&gt;RUN sudo ./dotnet-install.sh --channel 2.0 --install-dir ~/cli&lt;/P&gt;
&lt;P&gt;ENV PATH="/root/cli:${PATH}"&lt;/P&gt;

&lt;P&gt;#run this command to build the image&lt;/P&gt;
&lt;P&gt;#docker build -t ubuntu:prodip .&lt;/P&gt;

&lt;P&gt;This is the updated dockerfile used to build the app in Visual Studio:&lt;/P&gt;
&lt;P&gt;FROM ubuntu:prodip&lt;BR /&gt;ARG source&lt;BR /&gt;WORKDIR /app&lt;BR /&gt;ENV ASPNETCORE_URLS=http://+:80&lt;/P&gt;
&lt;P&gt;ENV COR_ENABLE_PROFILING="1"&lt;BR /&gt;ENV COR_PROFILER="{57e1aa68-2229-41aa-9931-a6e93bbc64d8}"&lt;BR /&gt;ENV COR_PROFILER_PATH="/app/runtimes/linux-x64/native/libappdprofiler.so"&lt;/P&gt;
&lt;P&gt;EXPOSE 80&lt;BR /&gt;COPY ${source:-obj/Docker/publish} .&lt;BR /&gt;ENTRYPOINT ["dotnet", "gdt.api.demo.dotnetcore.dll"]&lt;/P&gt;

&lt;P&gt;I do bin/bash into the container and here is what I see for OS version metadata:&lt;/P&gt;
&lt;P&gt;root@830f31b00d37:/# cat /etc/*release&lt;BR /&gt;DISTRIB_ID=Ubuntu&lt;BR /&gt;DISTRIB_RELEASE=18.04&lt;BR /&gt;DISTRIB_CODENAME=bionic&lt;BR /&gt;DISTRIB_DESCRIPTION="Ubuntu 18.04.1 LTS"&lt;BR /&gt;NAME="Ubuntu"&lt;BR /&gt;VERSION="18.04.1 LTS (Bionic Beaver)"&lt;BR /&gt;ID=ubuntu&lt;BR /&gt;ID_LIKE=debian&lt;BR /&gt;PRETTY_NAME="Ubuntu 18.04.1 LTS"&lt;BR /&gt;VERSION_ID="18.04"&lt;BR /&gt;HOME_URL="&lt;A href="https://www.ubuntu.com/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.ubuntu.com/&lt;/A&gt;"&lt;BR /&gt;SUPPORT_URL="&lt;A href="https://help.ubuntu.com/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://help.ubuntu.com/&lt;/A&gt;"&lt;BR /&gt;BUG_REPORT_URL="&lt;A href="https://bugs.launchpad.net/ubuntu/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://bugs.launchpad.net/ubuntu/&lt;/A&gt;"&lt;BR /&gt;PRIVACY_POLICY_URL="&lt;A href="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.ubuntu.com/legal/terms-and-policies/privacy-policy&lt;/A&gt;"&lt;BR /&gt;VERSION_CODENAME=bionic&lt;BR /&gt;UBUNTU_CODENAME=bionic&lt;BR /&gt;root@830f31b00d37:/#&lt;/P&gt;

&lt;P&gt;My ENV variables include AppD stuff. Don't know if PWD and OLDPDW has anything to do with my changes!&lt;/P&gt;
&lt;P&gt;COR_PROFILER={57e1aa68-2229-41aa-9931-a6e93bbc64d8}&lt;BR /&gt;HOSTNAME=830f31b00d37&lt;BR /&gt;COR_ENABLE_PROFILING=1&lt;BR /&gt;ASPNETCORE_URLS=http://+:80&lt;BR /&gt;COR_PROFILER_PATH=/app/runtimes/linux-x64/native/libappdprofiler.so&lt;BR /&gt;PWD=/&lt;BR /&gt;HOME=/root&lt;BR /&gt;TERM=xterm&lt;BR /&gt;SHLVL=1&lt;BR /&gt;PATH=/root/cli:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin&lt;BR /&gt;_=/usr/bin/env&lt;BR /&gt;OLDPWD=/app/runtimes/linux-x64/native&lt;/P&gt;

&lt;P&gt;&lt;SPAN&gt;libappdprofiler.so is found in the expected location:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;root@830f31b00d37:/# cd /app/runtimes/linux-x64/native&lt;BR /&gt;root@830f31b00d37:/app/runtimes/linux-x64/native# ls&lt;BR /&gt;libappdprofiler.so&lt;BR /&gt;root@830f31b00d37:/app/runtimes/linux-x64/native#&lt;/P&gt;

&lt;P&gt;AppD- Can you help?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Aug 2018 16:58:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732950#M8228</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2018-08-17T16:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate AppDynamcis APM to monitor .NET Core 2.0 Docker Container Application on Linux?</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732951#M8229</link>
      <description>Hi Prodip,&lt;BR /&gt; &lt;BR /&gt;We are reviewing provided info and will get back to you.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Raunak&lt;BR /&gt;</description>
      <pubDate>Sat, 18 Aug 2018 21:31:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732951#M8229</guid>
      <dc:creator>Raunak_Mohanty</dc:creator>
      <dc:date>2018-08-18T21:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate AppDynamcis APM to monitor .NET Core 2.0 Docker Container Application on Linux?</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732952#M8230</link>
      <description>@Raunak.Mohanty: Thank you for reviewing the thread. Do let me know if you require additional information from me.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Prodip</description>
      <pubDate>Sat, 18 Aug 2018 22:31:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732952#M8230</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2018-08-18T22:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate AppDynamcis APM to monitor .NET Core 2.0 Docker Container Application on Linux?</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732953#M8231</link>
      <description>&lt;P&gt;Hi Prodip,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;We have sent direct message to you&amp;nbsp;to share few more details. Please share those details for our review.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Kartikay&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2018 06:11:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732953#M8231</guid>
      <dc:creator>Kartikay_Tripat</dc:creator>
      <dc:date>2018-08-21T06:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate AppDynamcis APM to monitor .NET Core 2.0 Docker Container Application on Linux?</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732954#M8232</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Kartikay,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I responded to your message along with all the supporting information.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prodip&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2018 19:18:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732954#M8232</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2018-08-21T19:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to integrate AppDynamcis APM to monitor .NET Core 2.0 Docker Container Application on Linux?</title>
      <link>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732955#M8233</link>
      <description>Kartikay,&lt;BR /&gt;&lt;BR /&gt;I am trying to do something similar.  I am building some .netcore micro services that will run in the Microsoft Ubuntu Docker image.  Most of the instructions I can find talk about how to set it up on a linux server which can be a challenge to do in Docker.  I have added the plugin to my project and updated the config file and built the solution without error, but when I try to reference the library with a "using" statement VS cannot find the reference.</description>
      <pubDate>Wed, 12 Sep 2018 22:11:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-AppDynamics/How-to-integrate-AppDynamcis-APM-to-monitor-NET-Core-2-0-Docker/m-p/732955#M8233</guid>
      <dc:creator>CommunityUser</dc:creator>
      <dc:date>2018-09-12T22:11:11Z</dc:date>
    </item>
  </channel>
</rss>

