Multiple time based chart with Agent V1

Hi team,

I read in “agent v2” doc, the possibility to add several lines to the same chart, using the multipleTimeBased method:

Is there the same possibility using the agent v1 (express-sequelize) and how?

Thanks in advance
Louis-Marie

My current set up is:

  "meta": {
    "liana": "forest-express-sequelize",
    "liana_version": "9.3.9",
    "stack": {
      "database_type": "multiple",
      "engine": "nodejs",
      "engine_version": "20.10.0",
      "orm_version": "6.35.1"
    }

Hi @Louis-Marie ,

Yes, it is possible !
To do so, you simply have to follow the values format provided in the v1 documentation:

{
  value: [{
    label: <string>, // label of the first line
    values: { value: <number> } // values of the first line
  }, {
    label: <string>, // label of the 2nd line
    values: { value: <number> } // values of the 2nd line
  }, …]
}