Skip to content

include std_deviation in json formatter #366

@jtluka

Description

@jtluka

Currently the formatted json data provides only average of each metric:

    {                                                                           
        "result": "PASS",                                                       
        "type": "measurement",                                                  
        "measurement_type": "cpu",                                              
        "data": {                                                               
            "utilization": 86.636369661039                                                                                                                                                     
        }                                                                       
    },                                                                          

We should format this so that the data includes both average and std_deviation:

    {                                                                           
        "result": "PASS",                                                       
        "type": "measurement",                                                  
        "measurement_type": "cpu",                                              
        "data": {                                                               
            "utilization": {
                "average": 86.636369661039,                                                                                                                                                     
                "std_deviation": 2.1,
        }                                                                       
    },                                                                          

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions