Forum Discussion

Agathe's avatar
Agathe
Frequent Visitor
6 years ago
Solved

Realtime streaming dataset pb with historical data & report

Hi everyone I'm facing issue with my streaming dataset. My dataset "analyse historic data" is on.   Therefor my dataset is told hybrid   My dashboard is working great with 60 min da...
  • Agathe's avatar
    6 years ago

    Ok guys,

     

    I got my soluce.

    The json pushed data MUST be inclosed between [ and ] .

    So just update my php scipt like this :

    $arr = array(array('ca' => $ca_total, 'commandes' => $com_total,'date' => date('Y-m-d'), 'heure' => date('H:i:s'), 'ts' => date('Y-m-d H:i:s'), 'panier' => $panier_total));

    $json = json_encode($arr);

     

    That made the trick.