ML technique to predict next performance anomaly Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Moderator Election Q&A - Questionnaire 2019 Community Moderator Election ResultsML technique to predict next onlineHow to predict user next purchase itemsLSTM - How many times should I look back to predict next six hours -Multivariate Time-SeriesCustom c++ LSTM slows down at 0.36 cost is usual?What is Teacher Helping technique?How to predict customer's next purchaseCan LSTM Predict The Next Few Days Of Stock Price?ML technique to predict next year output based on text quantitiesCan BERT do the next-word-predict task?

What was the last x86 CPU that did not have the x87 floating-point unit built in?

How do you clear the ApexPages.getMessages() collection in a test?

Who can trigger ship-wide alerts in Star Trek?

Working around an AWS network ACL rule limit

What are the performance impacts of 'functional' Rust?

Geometric mean and geometric standard deviation

Replacing HDD with SSD; what about non-APFS/APFS?

Jazz greats knew nothing of modes. Why are they used to improvise on standards?

Should you tell Jews they are breaking a commandment?

Classification of bundles, Postnikov towers, obstruction theory, local coefficients

Passing functions in C++

How does modal jazz use chord progressions?

Why is "Captain Marvel" translated as male in Portugal?

If A makes B more likely then B makes A more likely"

How to rotate it perfectly?

Stopping real property loss from eroding embankment

Can a non-EU citizen traveling with me come with me through the EU passport line?

Unexpected result with right shift after bitwise negation

Cold is to Refrigerator as warm is to?

Estimated State payment too big --> money back; + 2018 Tax Reform

What would be Julian Assange's expected punishment, on the current English criminal law?

Using "nakedly" instead of "with nothing on"

Is it possible to ask for a hotel room without minibar/extra services?

The following signatures were invalid: EXPKEYSIG 1397BC53640DB551



ML technique to predict next performance anomaly



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Moderator Election Q&A - Questionnaire
2019 Community Moderator Election ResultsML technique to predict next onlineHow to predict user next purchase itemsLSTM - How many times should I look back to predict next six hours -Multivariate Time-SeriesCustom c++ LSTM slows down at 0.36 cost is usual?What is Teacher Helping technique?How to predict customer's next purchaseCan LSTM Predict The Next Few Days Of Stock Price?ML technique to predict next year output based on text quantitiesCan BERT do the next-word-predict task?










0












$begingroup$


I would like a direction for a ML technique to predict when an anomaly will occur in a system, like when the CPU use differs from a normal state.



My data consists of system metrics collected from AWS EC2 instances such as CPU Utilization, Disk operations, Memory Use etc. Each row of the data consists of a timestamp and values for the metrics.



My idea was to perhaps build a LSTM Recurrent Neural Network since I´m working with time series. Do you think this would be a good approach for this problem?










share|improve this question









$endgroup$
















    0












    $begingroup$


    I would like a direction for a ML technique to predict when an anomaly will occur in a system, like when the CPU use differs from a normal state.



    My data consists of system metrics collected from AWS EC2 instances such as CPU Utilization, Disk operations, Memory Use etc. Each row of the data consists of a timestamp and values for the metrics.



    My idea was to perhaps build a LSTM Recurrent Neural Network since I´m working with time series. Do you think this would be a good approach for this problem?










    share|improve this question









    $endgroup$














      0












      0








      0





      $begingroup$


      I would like a direction for a ML technique to predict when an anomaly will occur in a system, like when the CPU use differs from a normal state.



      My data consists of system metrics collected from AWS EC2 instances such as CPU Utilization, Disk operations, Memory Use etc. Each row of the data consists of a timestamp and values for the metrics.



      My idea was to perhaps build a LSTM Recurrent Neural Network since I´m working with time series. Do you think this would be a good approach for this problem?










      share|improve this question









      $endgroup$




      I would like a direction for a ML technique to predict when an anomaly will occur in a system, like when the CPU use differs from a normal state.



      My data consists of system metrics collected from AWS EC2 instances such as CPU Utilization, Disk operations, Memory Use etc. Each row of the data consists of a timestamp and values for the metrics.



      My idea was to perhaps build a LSTM Recurrent Neural Network since I´m working with time series. Do you think this would be a good approach for this problem?







      machine-learning neural-network lstm recurrent-neural-net






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 1 at 15:31









      AndreasAndreas

      163




      163




















          1 Answer
          1






          active

          oldest

          votes


















          0












          $begingroup$

          You can also perform ARIMA decomposition with regressors. ARIMA is the model in which each step of the time series depends on the previous steps of it and on the previous error terms. Regressors are your additional features, which could help determine next value of the time series.



          PROS: Easy to implement, can auto-tune proper ARIMA parameters.



          CONS: Linear dependence on regressors you will provide, therefore may underfit.






          share|improve this answer









          $endgroup$













            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "557"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f46473%2fml-technique-to-predict-next-performance-anomaly%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0












            $begingroup$

            You can also perform ARIMA decomposition with regressors. ARIMA is the model in which each step of the time series depends on the previous steps of it and on the previous error terms. Regressors are your additional features, which could help determine next value of the time series.



            PROS: Easy to implement, can auto-tune proper ARIMA parameters.



            CONS: Linear dependence on regressors you will provide, therefore may underfit.






            share|improve this answer









            $endgroup$

















              0












              $begingroup$

              You can also perform ARIMA decomposition with regressors. ARIMA is the model in which each step of the time series depends on the previous steps of it and on the previous error terms. Regressors are your additional features, which could help determine next value of the time series.



              PROS: Easy to implement, can auto-tune proper ARIMA parameters.



              CONS: Linear dependence on regressors you will provide, therefore may underfit.






              share|improve this answer









              $endgroup$















                0












                0








                0





                $begingroup$

                You can also perform ARIMA decomposition with regressors. ARIMA is the model in which each step of the time series depends on the previous steps of it and on the previous error terms. Regressors are your additional features, which could help determine next value of the time series.



                PROS: Easy to implement, can auto-tune proper ARIMA parameters.



                CONS: Linear dependence on regressors you will provide, therefore may underfit.






                share|improve this answer









                $endgroup$



                You can also perform ARIMA decomposition with regressors. ARIMA is the model in which each step of the time series depends on the previous steps of it and on the previous error terms. Regressors are your additional features, which could help determine next value of the time series.



                PROS: Easy to implement, can auto-tune proper ARIMA parameters.



                CONS: Linear dependence on regressors you will provide, therefore may underfit.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 1 at 15:56









                Michał KardachMichał Kardach

                716




                716



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Data Science Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    Use MathJax to format equations. MathJax reference.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f46473%2fml-technique-to-predict-next-performance-anomaly%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Marja Vauras Lähteet | Aiheesta muualla | NavigointivalikkoMarja Vauras Turun yliopiston tutkimusportaalissaInfobox OKSuomalaisen Tiedeakatemian varsinaiset jäsenetKasvatustieteiden tiedekunnan dekaanit ja muu johtoMarja VaurasKoulutusvienti on kestävyys- ja ketteryyslaji (2.5.2017)laajentamallaWorldCat Identities0000 0001 0855 9405n86069603utb201588738523620927

                    Which is better: GPT or RelGAN for text generation?2019 Community Moderator ElectionWhat is the difference between TextGAN and LM for text generation?GANs (generative adversarial networks) possible for text as well?Generator loss not decreasing- text to image synthesisChoosing a right algorithm for template-based text generationHow should I format input and output for text generation with LSTMsGumbel Softmax vs Vanilla Softmax for GAN trainingWhich neural network to choose for classification from text/speech?NLP text autoencoder that generates text in poetic meterWhat is the interpretation of the expectation notation in the GAN formulation?What is the difference between TextGAN and LM for text generation?How to prepare the data for text generation task

                    Is this part of the description of the Archfey warlock's Misty Escape feature redundant?When is entropic ward considered “used”?How does the reaction timing work for Wrath of the Storm? Can it potentially prevent the damage from the triggering attack?Does the Dark Arts Archlich warlock patrons's Arcane Invisibility activate every time you cast a level 1+ spell?When attacking while invisible, when exactly does invisibility break?Can I cast Hellish Rebuke on my turn?Do I have to “pre-cast” a reaction spell in order for it to be triggered?What happens if a Player Misty Escapes into an Invisible CreatureCan a reaction interrupt multiattack?Does the Fiend-patron warlock's Hurl Through Hell feature dispel effects that require the target to be on the same plane as the caster?What are you allowed to do while using the Warlock's Eldritch Master feature?