private createCFFVersionsWidget()

in lib/ab_dashboard.ts [61:76]


    private createCFFVersionsWidget(functionName : string, title: string): LogQueryWidget{
        return new LogQueryWidget({
            logGroupNames: ["/aws/cloudfront/function/"+functionName],
            view: LogQueryVisualizationType.PIE,
            title: title,
            width: 9,
            height: 8,
            queryLines: [
                "fields @timestamp, @message",
                "filter @message like /X_Experiment_V/",
                'parse "* * *" as a,b,version',
                "stats count(*) as VERSIONS by version as total",
            ]
            })

    }