Code Monkey home page Code Monkey logo

Comments (5)

Dmitry-Matveev avatar Dmitry-Matveev commented on May 21, 2024 1

I would recommend to go with fewer TelemetryClient instances to limit the impact. I cannot talk about why it was implemented in this particular way, we may need to involve the original code owners here.

.NET SDK usage typically involves a limited set of Telemetry Client instances, but it does not save user context in there, thus no appeal for "new"-ing up new instance every time. I would expect that Java SDK also should not save such a context per client instance.

BTW, .NET used to have a leak in Telemetry Clients and Channels as well.

from applicationinsights-java.

Mart-Bogdan avatar Mart-Bogdan commented on May 21, 2024

I don't see anything like this in .Net client:

        /// <summary>
        /// Initializes a new instance of the <see cref="TelemetryClient" /> class. Send telemetry with the specified <paramref name="configuration"/>.
        /// </summary>
        /// <exception cref="ArgumentNullException">The <paramref name="configuration"/> is null.</exception>
        /// <exception cref="ArgumentException">The <paramref name="configuration"/> does not contain a telemetry channel.</exception>
        public TelemetryClient(TelemetryConfiguration configuration)
        {
            if (configuration == null)
            {
                CoreEventSource.Log.TelemetryClientConstructorWithNoTelemetryConfiguration();
                configuration = TelemetryConfiguration.Active;
            }

            this.configuration = configuration;

            if (this.configuration.TelemetryChannel == null)
            {
                throw new ArgumentException("The specified configuration does not have a telemetry channel.", "configuration");
            }
        }

from applicationinsights-java.

beckylino avatar beckylino commented on May 21, 2024

@Mart-Bogdan were you able to diminish the number of TelemetryClient instances as recommended by @Dmitry-Matveev? Did this help?

from applicationinsights-java.

Mart-Bogdan avatar Mart-Bogdan commented on May 21, 2024

@beckylino hellom thanks, yes we've managed this workaround.

from applicationinsights-java.

dhaval24 avatar dhaval24 commented on May 21, 2024

@Mart-Bogdan closing this issue as you had got a working workaround.

from applicationinsights-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.