christophe M.

  • 0 questions asked
  • 404 answers
  • 73 best answers (18%)
  • Is it possible to export metrics from NeoLoad to external DB in real time during the test run?

    Is it possible to export metrics (response times throughput, HW utilization) from NeoLoad to external DB e.g. Graphite or InfluxDB in real time during the test run?
    Yuri P.
    Yuri P.

    Yuri P.

    Level
    0
    4 / 100
    points
    christophe M.
    christophe M.

    christophe M.

    Level
    4
    5000 / 5000
    points
    Team
    Hi Yuri, As NeoLoad Web will progressively become the central part of the NeoLoad platform, the API that retrieves NeoLoad data, live and after the test, has been implemented...
  • How to save a full http response into a variable?

    Hello there! I am trying to save a response of a http call into a variable so I can manipulate it on a javascript. Is there a way to access the response from a context...
    Ageo D.
    Ageo D.

    Ageo D.

    Level
    0
    14 / 100
    points
    christophe M.
    christophe M.

    christophe M.

    Level
    4
    5000 / 5000
    points
    Team
    This is on the roadmap to customize the trends, but not on the short term.
  • How to save a full http response into a variable?

    Hello there! I am trying to save a response of a http call into a variable so I can manipulate it on a javascript. Is there a way to access the response from a context...
    Ageo D.
    Ageo D.

    Ageo D.

    Level
    0
    14 / 100
    points
    christophe M.
    christophe M.

    christophe M.

    Level
    4
    5000 / 5000
    points
    Team
    Unfortunately, NeoLoad Web doesn't not support percentiles for now. Only average, min, max...
  • How to save a full http response into a variable?

    Hello there! I am trying to save a response of a http call into a variable so I can manipulate it on a javascript. Is there a way to access the response from a context...
    Ageo D.
    Ageo D.

    Ageo D.

    Level
    0
    14 / 100
    points
    christophe M.
    christophe M.

    christophe M.

    Level
    4
    5000 / 5000
    points
    Team
    I understand. As suggest, you can run a small test for each kind of data (it has the benefit to average different calls with the same kind of date to get a more reliable...
  • How to save a full http response into a variable?

    Hello there! I am trying to save a response of a http call into a variable so I can manipulate it on a javascript. Is there a way to access the response from a context...
    Ageo D.
    Ageo D.

    Ageo D.

    Level
    0
    14 / 100
    points
    christophe M.
    christophe M.

    christophe M.

    Level
    4
    5000 / 5000
    points
    Team
    Hi Mussafir, there's currently no-way to get live a response time measured by NeoLoad. Why do you need it? There may be alternate way to solve your problem.
  • Can I delete login action from a scenario?

    Sorry, I am new to testing and Neoload, so I am still confused about how Neoload works. Currently, I am testing a cloud application(an application for project management)...
    chun tat K.
    chun tat K.

    chun tat K.

    Level
    0
    7 / 100
    points
    christophe M.
    christophe M.

    christophe M.

    Level
    4
    5000 / 5000
    points
    Team
    Hi Sunny, if the login is required to access the third part, i.e: if when accessing this third part directly a login is requested, then you must keep the login part. You may...
  • Parameters inside Parameters

    Hi there! I would like to try to substitute parameters inside another parameter. The reason is that I would like to avoid a huge file of parameters, since the mix of N X M is...
    Ageo D.
    Ageo D.

    Ageo D.

    Level
    0
    14 / 100
    points
    christophe M.
    christophe M.

    christophe M.

    Level
    4
    5000 / 5000
    points
    Team
    Hi Ageao, You can handle it through the Javascript action. You should use the parseString method : context.variableManager.getValue("TextADAD${Param2}BCSDST")...
  • Update Y-Axis in Jenkins Graph

    We have scheduled neoload to run from Jenkins and got a customized graph for 95th percentile. On the Y-axis the graph is displaying as percentile which is misleading ideally...
    Mike M.
    Mike M.

    Mike M.

    Level
    0
    5 / 100
    points
    christophe M.
    christophe M.

    christophe M.

    Level
    4
    5000 / 5000
    points
    Team
    There's no option to change this label: the plugin is designed to display the statistic used (min, average, max, percentile,...) not the unit. For your information, the...
  • How to use variables' value in my java-script in neload?

    I just create a variable in Neoload,which name is CenterID. Its value is from a "csv" file with 5000+ data. And each time it choose one random value as its current value...
    Andrew J.
    Andrew J.

    Andrew J.

    Level
    0
    4 / 100
    points
    christophe M.
    christophe M.

    christophe M.

    Level
    4
    5000 / 5000
    points
    Team
    Hi Andrew, For Table/File variables the syntax for context.variableManager.getValue() is {CSV_Variable_Name}.{ColumnName} Ex: getValue("Accounts.login")
  • SLA Profile Operator "Between" not functional

    I am trying to create a SLA profile where if Avg. Transaction Response time is greater than or equal to 5 secs, show the status as failed. And if between 3-5 secs show a warning...
    Sulav B.
    Sulav B.

    Sulav B.

    Level
    1
    228 / 750
    points
    christophe M.
    christophe M.

    christophe M.

    Level
    4
    5000 / 5000
    points
    Team
    Hi, the simplest way is to set: >3 Warning >5 Error (Error status overrides the Warning status) You don't need the Between. Regarding the "between" operator there's a...