/*
* Copyright (c) 2006 Oracle. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this source tree, or the
* OpenIB.org BSD license below:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
#include <linux/kernel.h>
#include <linux/in.h>
#include <linux/device.h>
#include <linux/dmapool.h>
#include <linux/ratelimit.h>
#include "rds.h"
#include "iw.h"
static void rds_iw_send_rdma_complete(struct rds_message *rm,
int wc_status)
{
int notify_status;
switch (wc_status) {
case IB_WC_WR_FLUSH_ERR:
return;
case IB_WC_SUCCESS:
notify_status = RDS_RDMA_SUCCESS;
break;
case IB_WC_REM_ACCESS_ERR:
notify_status = RDS_RDMA_REMOTE_ERROR;
break;
default:
notify_status = RDS_RDMA_OTHER_ERROR;
break;
}
rds_rdma_send_complete(rm, notify_status);
}
static void rds_iw_send_unmap_rdma(struct rds_iw_connection *ic,
struct rm_rdma_op *op)
{
if (op->op_mapped) {
ib_dma_unmap_sg(ic->i_cm_id->device,
op->op_sg, op->op_nents,
op->op_write ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
op->op_mapped = 0;
}
}
static void rds_iw_send_unmap_rm(struct rds_iw_connection *ic,
struct rds_iw_send_work *send,
int wc_status)
{
struct rds_message *rm = send->s_rm;
rdsdebug("ic %p send %p rm %p\n", ic, send, rm);
ib_dma_unmap_sg(ic->i_cm_id->device,
rm->data.op_sg, rm->data.op_nents,
DMA_TO_DEVICE);
if (rm->rdma.op_active) {
rds_iw_send_unmap_rdma(ic, &rm->rdma);
/* If the user asked for a completion notification on this
* message, we can implement three different semantics:
* 1. Notify when we received the ACK on the RDS message
* that was queued with the RDMA. This provides reliable
* notification of RDMA status at the expense of a one-way
* packet delay.
* 2. Notify when the IB stack gives us the completion event for
* the RDMA operation.
* 3. Notify when the IB stack gives us the completion event for
* the accompanying RDS messages.
* Here, we implement approach #3. To implement approach #2,
* call rds_rdma_send_complete from the cq_handler. To implement #1,
* don't call rds_rdma_send_complete at all, and fall back to the notify
* handling in the ACK processing code.
*
* Note: There's no need to explicitly sync any RDMA buffers using
* ib_dma_sync_sg_for_cpu - the completion for the RDMA
* operation itself unmapped the RDMA buffers, which takes care
* of synching.
*/
rds_iw_send_rdma_complete(rm, wc_status);
if (rm->rdma.op_write)
rds_stats_add(s_send_rdma_bytes, rm->rdma.op_bytes);
else
rds_stats_add(s_recv_rdma_bytes, rm->rdma.op_bytes);
}
/* If anyone waited for this message to get flushed out, wake
* them up now */
rds_message_unmapped(rm);
rds_message_put(rm);
send->s_rm = NULL;
}
void rds_iw_send_init_ring(struct rds_iw_connection *ic)
{
struct rds_iw_send_work *send;
u32 i;
for (i = 0, send = ic->i_sends; i < ic->i_send_ring.w_nr; i++, send++) {
struct ib_sge *sge;
send->s_rm = NULL;
send->s_op = NULL;
send->s_mapping = NULL;
send->s_send_wr.next = NULL;
send->s_send_wr.wr_id = i;
send->s_send_wr.sg_list = send->s_sge;
send->s_send_wr.num_sge = 1;
send->s_send_wr.opcode = IB_WR_SEND;
send->s_send_wr.send_flags = 0;
send->s_send_wr.ex.imm_data = 0;
sge = rds_iw_data_sge(ic, send->s_sge);
sge->lkey = 0;
sge = rds_iw_header_sge(ic, send->s_sge);
sge->addr = ic->i_send_hdrs_dma + (i * sizeof(struct rds_header));
sge->length = sizeof(struct rds_header);
sge->lkey = 0;
send->s_mr = ib_alloc_mr(ic->i_pd, IB_MR_TYPE_MEM_REG,
fastreg_message_size);
if (IS_ERR(send->s_mr)) {
printk(KERN_WARNING "RDS/IW: ib_alloc_mr failed\n");
break;
}
}
}
void rds_iw_send_clear_ring(struct rds_iw_connection *ic)
{
struct rds_iw_send_work *send;
u32 i;
for (i = 0, send = ic->i_sends; i < ic->i_send_ring.w_nr; i++, send++) {
BUG_ON(!send->s_mr);
ib_dereg_mr(send->s_mr);
if (send->s_send_wr.opcode == 0xdead)
continue;
if (send->s_rm)
rds_iw_send_unmap_rm(ic, send, IB_WC_WR_FLUSH_ERR);
if (send->s_op)
rds_iw_send_unmap_rdma(ic, send->s_op);
}
}
/*
* The _oldest/_free ring operations here race cleanly with the alloc/unalloc
* operations performed in the send path. As the sender allocs and potentially
* unallocs the next free entry in the ring it doesn't alter which is
* the next to be freed, which is what this is concerned with.
*/
void rds_iw_send_cq_comp_handler(struct ib_cq *cq, void *context)
{
struct rds_connection *conn = context;
struct rds_iw_connection *ic = conn->c_transport_data;
struct ib_wc wc;
struct rds_iw_send_work *send;
u32 completed;
u32 oldest;
u32 i;
int ret;
rdsdebug("cq %p conn %p\n", cq, conn);
rds_iw_stats_inc(s_iw_tx_cq_call);
ret = ib_req_notify_cq(cq, IB_CQ_NEXT_COMP);
if (ret)
rdsdebug("ib_req_notify_cq send failed: %d\n", ret);
while (ib_poll_cq(cq, 1, &wc) > 0) {
rdsdebug("wc wr_id 0x%llx status %u byte_len %u imm_data %u\n",
(unsigned long long)wc.wr_id, wc.status, wc.byte_len,
be32_to_cpu(wc.ex.imm_data));
rds_iw_stats_inc(s_iw_tx_cq_event);
if (wc.status != IB_WC_SUCCESS) {
printk(KERN_ERR "WC Error: status = %d opcode = %d\n", wc.status, wc.opcode);
break;
}
if (wc.opcode == IB_WC_LOCAL_INV && wc.wr_id == RDS_IW_LOCAL_INV_WR_ID) {
ic->i_fastreg_posted = 0;
continue;
}
if (wc.opcode == IB_WC_REG_MR && wc.wr_id == RDS_IW_REG_WR_ID) {
ic->i_fastreg_posted = 1;
continue;
}
if (wc.wr_id == RDS_IW_ACK_WR_ID) {
if (time_after(jiffies, ic->i_ack_queued + HZ/.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */{
"id": 6,
"title": "Yardstick-TC010",
"originalTitle": "Yardstick-TC010",
"tags": [
"yardstick-tc"
],
"style": "dark",
"timezone": "browser",
"editable": true,
"hideControls": false,
"sharedCrosshair": false,
"rows": [
{
"collapse": false,
"editable": true,
"height": "100px",
"panels": [
{
"content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><center>OPNFV_Yardstick_TC010 - Memory Latency (Lmbench)</center> </a></h5>\n<center>\n<p>Measure the memory read latency for varying memory sizes and strides. Whole memory hierarchy is measured including all levels of cache.\nFor more information see <a style=\"color:#31A7D3\"; href=\"http://artifacts.opnfv.org/yardstick/brahmaputra/docs/userguide/opnfv_yardstick_tc010.html\">TC010</a></p>\n</center>\n",
"editable": true,
"error": false,
"id": 2,
"isNew": true,
"links": [],
"mode": "html",
"span": 12,
"style": {},
"title": "",
"type": "text"
}
],
"title": "New row"
},
{
"collapse": false,
"editable": true,
"height": "25px",
"panels": [
{
"content": "",
"editable": true,
"error": false,
"id": 3,
"isNew": true,
"links": [],
"mode": "markdown",
"span": 12,
"style": {},
"title": "Test Case Execution",
"type": "text"
}
],
"title": "New row"
},
{
"collapse": false,
"editable": true,
"height": "250px",
"panels": [
{
"aliasColors": {},
"bars": false,
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fill": 1,
"grid": {
"leftLogBase": 1,
"leftMax": null,
"leftMin": null,
"rightLogBase": 1,
"rightMax": null,
"rightMin": null,
"threshold1": null,
"threshold1Color": "rgba(216, 200, 27, 0.27)",
"threshold2": null,
"threshold2Color": "rgba(234, 112, 112, 0.22)"
},
"id": 1,
"isNew": true,
"leftYAxisLabel": "Latency (ns)",
"legend": {
"alignAsTable": true,
"avg": false,
"current": true,
"max": false,
"min": false,
"show": true,
"total": false,
"values": true
},
"lines": true,
"linewidth": 2,
"links": [],
"nullPointMode": "connected",
"percentage": false,
"pointradius": 5,
"points": false,
"renderer": "flot",
"seriesOverrides": [],
"span": 12,
"stack": false,
"steppedLine": false,
"targets": [
{
"alias": "$tag_pod_name - $tag_deploy_scenario",
"dsType": "influxdb",
"groupBy": [
{
"params": [
"pod_name"
],
"type": "tag"
},
{
"params": [
"task_id"
],
"type": "tag"
},
{
"params": [
"deploy_scenario"
],
"type": "tag"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT \"latencies0.latency\" FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY \"pod_name\", \"task_id\", \"deploy_scenario\"",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"timeShift": null,
"title": "Memory Latency, lmbench",
"tooltip": {
"shared": true,
"value_type": "cumulative"
},
"type": "graph",
"x-axis": true,
"y-axis": true,
"y_formats": [
"short",
"short"
]
}
],
"title": "Row"
},
{
"collapse": false,
"editable": true,
"height": "25px",
"panels": [
{
"content": "",
"editable": true,
"error": false,
"id": 4,
"isNew": true,
"links": [],
"mode": "markdown",
"span": 12,
"style": {},
"title": "Daily Averages",
"type": "text"
}
],
"title": "New row"
},
{
"collapse": false,
"editable": true,
"height": "250px",
"panels": [
{
"columns": [],
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fontSize": "100%",
"id": 5,
"isNew": true,
"links": [],
"minSpan": 2,
"pageSize": null,
"repeat": "POD",
"scopedVars": {
"POD": {
"text": "ericsson-pod2",
"value": "ericsson\\-pod2",
"selected": true
}
},
"scroll": true,
"showHeader": true,
"sort": {
"col": 0,
"desc": true
},
"span": 2,
"styles": [
{
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"pattern": "Time",
"type": "date"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"decimals": 2,
"pattern": "deploy_scenario",
"thresholds": [],
"type": "string",
"unit": "short"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"pattern": "/.*/",
"thresholds": [],
"type": "number",
"unit": "short"
}
],
"targets": [
{
"dsType": "influxdb",
"groupBy": [
{
"params": [
"deploy_scenario"
],
"type": "tag"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT \"latencies0.latency\" FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY \"deploy_scenario\"",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"title": "$POD",
"transform": "timeseries_to_rows",
"type": "table"
},
{
"columns": [],
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fontSize": "100%",
"id": 8,
"isNew": true,
"links": [],
"minSpan": 2,
"pageSize": null,
"repeat": null,
"scopedVars": {
"POD": {
"text": "huawei-pod1",
"value": "huawei\\-pod1",
"selected": true
}
},
"scroll": true,
"showHeader": true,
"sort": {
"col": 0,
"desc": true
},
"span": 2,
"styles": [
{
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"pattern": "Time",
"type": "date"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"decimals": 2,
"pattern": "deploy_scenario",
"thresholds": [],
"type": "string",
"unit": "short"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"pattern": "/.*/",
"thresholds": [],
"type": "number",
"unit": "short"
}
],
"targets": [
{
"dsType": "influxdb",
"groupBy": [
{
"params": [
"deploy_scenario"
],
"type": "tag"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT \"latencies0.latency\" FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY \"deploy_scenario\"",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"title": "$POD",
"transform": "timeseries_to_rows",
"type": "table",
"repeatIteration": 1468224666109,
"repeatPanelId": 5
},
{
"columns": [],
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fontSize": "100%",
"id": 10,
"isNew": true,
"links": [],
"minSpan": 2,
"pageSize": null,
"repeat": null,
"scopedVars": {
"POD": {
"text": "huawei-pod2",
"value": "huawei\\-pod2",
"selected": true
}
},
"scroll": true,
"showHeader": true,
"sort": {
"col": 0,
"desc": true
},
"span": 2,
"styles": [
{
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"pattern": "Time",
"type": "date"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"decimals": 2,
"pattern": "deploy_scenario",
"thresholds": [],
"type": "string",
"unit": "short"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"pattern": "/.*/",
"thresholds": [],
"type": "number",
"unit": "short"
}
],
"targets": [
{
"dsType": "influxdb",
"groupBy": [
{
"params": [
"deploy_scenario"
],
"type": "tag"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT \"latencies0.latency\" FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY \"deploy_scenario\"",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"title": "$POD",
"transform": "timeseries_to_rows",
"type": "table",
"repeatIteration": 1468224666109,
"repeatPanelId": 5
},
{
"columns": [],
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fontSize": "100%",
"id": 11,
"isNew": true,
"links": [],
"minSpan": 2,
"pageSize": null,
"repeat": null,
"scopedVars": {
"POD": {
"text": "intel-pod6",
"value": "intel\\-pod6",
"selected": true
}
},
"scroll": true,
"showHeader": true,
"sort": {
"col": 0,
"desc": true
},
"span": 2,
"styles": [
{
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"pattern": "Time",
"type": "date"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"decimals": 2,
"pattern": "deploy_scenario",
"thresholds": [],
"type": "string",
"unit": "short"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"pattern": "/.*/",
"thresholds": [],
"type": "number",
"unit": "short"
}
],
"targets": [
{
"dsType": "influxdb",
"groupBy": [
{
"params": [
"deploy_scenario"
],
"type": "tag"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT \"latencies0.latency\" FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY \"deploy_scenario\"",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"title": "$POD",
"transform": "timeseries_to_rows",
"type": "table",
"repeatIteration": 1468224666109,
"repeatPanelId": 5
},
{
"columns": [],
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fontSize": "100%",
"id": 15,
"isNew": true,
"links": [],
"minSpan": 2,
"pageSize": null,
"repeat": null,
"scopedVars": {
"POD": {
"text": "lf-pod2",
"value": "lf\\-pod2",
"selected": true
}
},
"scroll": true,
"showHeader": true,
"sort": {
"col": 0,
"desc": true
},
"span": 2,
"styles": [
{
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"pattern": "Time",
"type": "date"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"decimals": 2,
"pattern": "deploy_scenario",
"thresholds": [],
"type": "string",
"unit": "short"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"pattern": "/.*/",
"thresholds": [],
"type": "number",
"unit": "short"
}
],
"targets": [
{
"dsType": "influxdb",
"groupBy": [
{
"params": [
"deploy_scenario"
],
"type": "tag"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT \"latencies0.latency\" FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY \"deploy_scenario\"",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"title": "$POD",
"transform": "timeseries_to_rows",
"type": "table",
"repeatIteration": 1468224666109,
"repeatPanelId": 5
},
{
"columns": [],
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fontSize": "100%",
"id": 17,
"isNew": true,
"links": [],
"minSpan": 2,
"pageSize": null,
"repeat": null,
"scopedVars": {
"POD": {
"text": "zte-pod1",
"value": "zte\\-pod1",
"selected": true
}
},
"scroll": true,
"showHeader": true,
"sort": {
"col": 0,
"desc": true
},
"span": 2,
"styles": [
{
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"pattern": "Time",
"type": "date"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"decimals": 2,
"pattern": "deploy_scenario",
"thresholds": [],
"type": "string",
"unit": "short"
},
{
"colorMode": null,
"colors": [
"rgba(245, 54, 54, 0.9)",
"rgba(237, 129, 40, 0.89)",
"rgba(50, 172, 45, 0.97)"
],
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"decimals": 2,
"pattern": "/.*/",
"thresholds": [],
"type": "number",
"unit": "short"
}
],
"targets": [
{
"dsType": "influxdb",
"groupBy": [
{
"params": [
"deploy_scenario"
],
"type": "tag"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT \"latencies0.latency\" FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY \"deploy_scenario\"",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"title": "$POD",
"transform": "timeseries_to_rows",
"type": "table",
"repeatIteration": 1468224666109,
"repeatPanelId": 5
}
],
"title": "New row"
},
{
"collapse": false,
"editable": true,
"height": "250px",
"panels": [
{
"aliasColors": {},
"bars": false,
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fill": 1,
"grid": {
"leftLogBase": 1,
"leftMax": null,
"leftMin": null,
"rightLogBase": 1,
"rightMax": null,
"rightMin": null,
"threshold1": null,
"threshold1Color": "rgba(216, 200, 27, 0.27)",
"threshold2": null,
"threshold2Color": "rgba(234, 112, 112, 0.22)"
},
"id": 7,
"isNew": true,
"legend": {
"avg": false,
"current": false,
"max": false,
"min": false,
"show": true,
"total": false,
"values": false
},
"lines": true,
"linewidth": 2,
"links": [],
"minSpan": 2,
"nullPointMode": "connected",
"percentage": false,
"pointradius": 5,
"points": false,
"renderer": "flot",
"repeat": "POD",
"scopedVars": {
"POD": {
"text": "ericsson-pod2",
"value": "ericsson\\-pod2",
"selected": true
}
},
"seriesOverrides": [],
"span": 2,
"stack": false,
"steppedLine": false,
"targets": [
{
"alias": "$tag_deploy_scenario",
"dsType": "influxdb",
"groupBy": [
{
"params": [
"24h"
],
"type": "time"
},
{
"params": [
"deploy_scenario"
],
"type": "tag"
},
{
"params": [
"pod_name"
],
"type": "tag"
},
{
"params": [
"null"
],
"type": "fill"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT mean(\"latencies0.latency\") FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY time(24h), \"deploy_scenario\", \"pod_name\" fill(null)",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
},
{
"params": [],
"type": "mean"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"timeShift": null,
"title": "$POD",
"tooltip": {
"shared": true,
"value_type": "cumulative"
},
"type": "graph",
"x-axis": true,
"y-axis": true,
"y_formats": [
"short",
"short"
]
},
{
"aliasColors": {},
"bars": false,
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fill": 1,
"grid": {
"leftLogBase": 1,
"leftMax": null,
"leftMin": null,
"rightLogBase": 1,
"rightMax": null,
"rightMin": null,
"threshold1": null,
"threshold1Color": "rgba(216, 200, 27, 0.27)",
"threshold2": null,
"threshold2Color": "rgba(234, 112, 112, 0.22)"
},
"id": 9,
"isNew": true,
"legend": {
"avg": false,
"current": false,
"max": false,
"min": false,
"show": true,
"total": false,
"values": false
},
"lines": true,
"linewidth": 2,
"links": [],
"minSpan": 2,
"nullPointMode": "connected",
"percentage": false,
"pointradius": 5,
"points": false,
"renderer": "flot",
"repeat": null,
"scopedVars": {
"POD": {
"text": "huawei-pod1",
"value": "huawei\\-pod1",
"selected": true
}
},
"seriesOverrides": [],
"span": 2,
"stack": false,
"steppedLine": false,
"targets": [
{
"alias": "$tag_deploy_scenario",
"dsType": "influxdb",
"groupBy": [
{
"params": [
"24h"
],
"type": "time"
},
{
"params": [
"deploy_scenario"
],
"type": "tag"
},
{
"params": [
"pod_name"
],
"type": "tag"
},
{
"params": [
"null"
],
"type": "fill"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT mean(\"latencies0.latency\") FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY time(24h), \"deploy_scenario\", \"pod_name\" fill(null)",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
},
{
"params": [],
"type": "mean"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"timeShift": null,
"title": "$POD",
"tooltip": {
"shared": true,
"value_type": "cumulative"
},
"type": "graph",
"x-axis": true,
"y-axis": true,
"y_formats": [
"short",
"short"
],
"repeatIteration": 1468224666109,
"repeatPanelId": 7
},
{
"aliasColors": {},
"bars": false,
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fill": 1,
"grid": {
"leftLogBase": 1,
"leftMax": null,
"leftMin": null,
"rightLogBase": 1,
"rightMax": null,
"rightMin": null,
"threshold1": null,
"threshold1Color": "rgba(216, 200, 27, 0.27)",
"threshold2": null,
"threshold2Color": "rgba(234, 112, 112, 0.22)"
},
"id": 13,
"isNew": true,
"legend": {
"avg": false,
"current": false,
"max": false,
"min": false,
"show": true,
"total": false,
"values": false
},
"lines": true,
"linewidth": 2,
"links": [],
"minSpan": 2,
"nullPointMode": "connected",
"percentage": false,
"pointradius": 5,
"points": false,
"renderer": "flot",
"repeat": null,
"scopedVars": {
"POD": {
"text": "huawei-pod2",
"value": "huawei\\-pod2",
"selected": true
}
},
"seriesOverrides": [],
"span": 2,
"stack": false,
"steppedLine": false,
"targets": [
{
"alias": "$tag_deploy_scenario",
"dsType": "influxdb",
"groupBy": [
{
"params": [
"24h"
],
"type": "time"
},
{
"params": [
"deploy_scenario"
],
"type": "tag"
},
{
"params": [
"pod_name"
],
"type": "tag"
},
{
"params": [
"null"
],
"type": "fill"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT mean(\"latencies0.latency\") FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY time(24h), \"deploy_scenario\", \"pod_name\" fill(null)",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
},
{
"params": [],
"type": "mean"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"timeShift": null,
"title": "$POD",
"tooltip": {
"shared": true,
"value_type": "cumulative"
},
"type": "graph",
"x-axis": true,
"y-axis": true,
"y_formats": [
"short",
"short"
],
"repeatIteration": 1468224666109,
"repeatPanelId": 7
},
{
"aliasColors": {},
"bars": false,
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fill": 1,
"grid": {
"leftLogBase": 1,
"leftMax": null,
"leftMin": null,
"rightLogBase": 1,
"rightMax": null,
"rightMin": null,
"threshold1": null,
"threshold1Color": "rgba(216, 200, 27, 0.27)",
"threshold2": null,
"threshold2Color": "rgba(234, 112, 112, 0.22)"
},
"id": 14,
"isNew": true,
"legend": {
"avg": false,
"current": false,
"max": false,
"min": false,
"show": true,
"total": false,
"values": false
},
"lines": true,
"linewidth": 2,
"links": [],
"minSpan": 2,
"nullPointMode": "connected",
"percentage": false,
"pointradius": 5,
"points": false,
"renderer": "flot",
"repeat": null,
"scopedVars": {
"POD": {
"text": "intel-pod6",
"value": "intel\\-pod6",
"selected": true
}
},
"seriesOverrides": [],
"span": 2,
"stack": false,
"steppedLine": false,
"targets": [
{
"alias": "$tag_deploy_scenario",
"dsType": "influxdb",
"groupBy": [
{
"params": [
"24h"
],
"type": "time"
},
{
"params": [
"deploy_scenario"
],
"type": "tag"
},
{
"params": [
"pod_name"
],
"type": "tag"
},
{
"params": [
"null"
],
"type": "fill"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT mean(\"latencies0.latency\") FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY time(24h), \"deploy_scenario\", \"pod_name\" fill(null)",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
},
{
"params": [],
"type": "mean"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"timeShift": null,
"title": "$POD",
"tooltip": {
"shared": true,
"value_type": "cumulative"
},
"type": "graph",
"x-axis": true,
"y-axis": true,
"y_formats": [
"short",
"short"
],
"repeatIteration": 1468224666109,
"repeatPanelId": 7
},
{
"aliasColors": {},
"bars": false,
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fill": 1,
"grid": {
"leftLogBase": 1,
"leftMax": null,
"leftMin": null,
"rightLogBase": 1,
"rightMax": null,
"rightMin": null,
"threshold1": null,
"threshold1Color": "rgba(216, 200, 27, 0.27)",
"threshold2": null,
"threshold2Color": "rgba(234, 112, 112, 0.22)"
},
"id": 16,
"isNew": true,
"legend": {
"avg": false,
"current": false,
"max": false,
"min": false,
"show": true,
"total": false,
"values": false
},
"lines": true,
"linewidth": 2,
"links": [],
"minSpan": 2,
"nullPointMode": "connected",
"percentage": false,
"pointradius": 5,
"points": false,
"renderer": "flot",
"repeat": null,
"scopedVars": {
"POD": {
"text": "lf-pod2",
"value": "lf\\-pod2",
"selected": true
}
},
"seriesOverrides": [],
"span": 2,
"stack": false,
"steppedLine": false,
"targets": [
{
"alias": "$tag_deploy_scenario",
"dsType": "influxdb",
"groupBy": [
{
"params": [
"24h"
],
"type": "time"
},
{
"params": [
"deploy_scenario"
],
"type": "tag"
},
{
"params": [
"pod_name"
],
"type": "tag"
},
{
"params": [
"null"
],
"type": "fill"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT mean(\"latencies0.latency\") FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY time(24h), \"deploy_scenario\", \"pod_name\" fill(null)",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
},
{
"params": [],
"type": "mean"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"timeShift": null,
"title": "$POD",
"tooltip": {
"shared": true,
"value_type": "cumulative"
},
"type": "graph",
"x-axis": true,
"y-axis": true,
"y_formats": [
"short",
"short"
],
"repeatIteration": 1468224666109,
"repeatPanelId": 7
},
{
"aliasColors": {},
"bars": false,
"datasource": "yardstick-vtc",
"editable": true,
"error": false,
"fill": 1,
"grid": {
"leftLogBase": 1,
"leftMax": null,
"leftMin": null,
"rightLogBase": 1,
"rightMax": null,
"rightMin": null,
"threshold1": null,
"threshold1Color": "rgba(216, 200, 27, 0.27)",
"threshold2": null,
"threshold2Color": "rgba(234, 112, 112, 0.22)"
},
"id": 18,
"isNew": true,
"legend": {
"avg": false,
"current": false,
"max": false,
"min": false,
"show": true,
"total": false,
"values": false
},
"lines": true,
"linewidth": 2,
"links": [],
"minSpan": 2,
"nullPointMode": "connected",
"percentage": false,
"pointradius": 5,
"points": false,
"renderer": "flot",
"repeat": null,
"scopedVars": {
"POD": {
"text": "zte-pod1",
"value": "zte\\-pod1",
"selected": true
}
},
"seriesOverrides": [],
"span": 2,
"stack": false,
"steppedLine": false,
"targets": [
{
"alias": "$tag_deploy_scenario",
"dsType": "influxdb",
"groupBy": [
{
"params": [
"24h"
],
"type": "time"
},
{
"params": [
"deploy_scenario"
],
"type": "tag"
},
{
"params": [
"pod_name"
],
"type": "tag"
},
{
"params": [
"null"
],
"type": "fill"
}
],
"measurement": "opnfv_yardstick_tc010",
"query": "SELECT mean(\"latencies0.latency\") FROM \"opnfv_yardstick_tc010\" WHERE \"pod_name\" =~ /$POD$/ AND \"deploy_scenario\" =~ /$SCENARIO$/ AND $timeFilter GROUP BY time(24h), \"deploy_scenario\", \"pod_name\" fill(null)",
"refId": "A",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"latencies0.latency"
],
"type": "field"
},
{
"params": [],
"type": "mean"
}
]
],
"tags": [
{
"key": "pod_name",
"operator": "=~",
"value": "/$POD$/"
},
{
"condition": "AND",
"key": "deploy_scenario",
"operator": "=~",
"value": "/$SCENARIO$/"
}
]
}
],
"timeFrom": "14d",
"timeShift": null,
"title": "$POD",
"tooltip": {
"shared": true,
"value_type": "cumulative"
},
"type": "graph",
"x-axis": true,
"y-axis": true,
"y_formats": [
"short",
"short"
],
"repeatIteration": 1468224666109,
"repeatPanelId": 7
}
],
"title": "New row"
}
],
"time": {
"from": "now-6h",
"to": "now"
},
"timepicker": {
"refresh_intervals": [
"5s",
"10s",
"30s",
"1m",
"5m",
"15m",
"30m",
"1h",
"2h",
"1d"
],
"time_options": [
"5m",
"15m",
"1h",
"6h",
"12h",
"24h",
"2d",
"7d",
"30d"
]
},
"templating": {
"list": [
{
"allFormat": "regex values",
"current": {
"tags": [],
"text": "ericsson-pod2 + huawei-pod1 + huawei-pod2 + intel-pod6 + lf-pod2 + zte-pod1",
"value": [
"ericsson\\-pod2",
"huawei\\-pod1",
"huawei\\-pod2",
"intel\\-pod6",
"lf\\-pod2",
"zte\\-pod1"
]
},
"datasource": "yardstick-vtc",
"includeAll": true,
"multi": true,
"multiFormat": "regex values",
"name": "POD",
"options": [
{
"text": "All",
"value": "(elxg482ls42|ericsson\\-pod1|ericsson\\-pod2|huawei\\-pod1|huawei\\-pod2|huawei\\-us\\-deploy\\-bare\\-1|intel\\-pod5|intel\\-pod6|lf\\-pod1|lf\\-pod2|opnfv\\-jump\\-1|opnfv\\-jump\\-2|orange\\-fr\\-pod2|unknown|zte\\-pod1)",
"selected": false
},
{
"text": "elxg482ls42",
"value": "elxg482ls42",
"selected": false
},
{
"text": "ericsson-pod1",
"value": "ericsson\\-pod1",
"selected": false
},
{
"text": "ericsson-pod2",
"value": "ericsson\\-pod2",
"selected": true
},
{
"text": "huawei-pod1",
"value": "huawei\\-pod1",
"selected": true
},
{
"text": "huawei-pod2",
"value": "huawei\\-pod2",
"selected": true
},
{
"text": "huawei-us-deploy-bare-1",
"value": "huawei\\-us\\-deploy\\-bare\\-1",
"selected": false
},
{
"text": "intel-pod5",
"value": "intel\\-pod5",
"selected": false
},
{
"text": "intel-pod6",
"value": "intel\\-pod6",
"selected": true
},
{
"text": "lf-pod1",
"value": "lf\\-pod1",
"selected": false
},
{
"text": "lf-pod2",
"value": "lf\\-pod2",
"selected": true
},
{
"text": "opnfv-jump-1",
"value": "opnfv\\-jump\\-1",
"selected": false
},
{
"text": "opnfv-jump-2",
"value": "opnfv\\-jump\\-2",
"selected": false
},
{
"text": "orange-fr-pod2",
"value": "orange\\-fr\\-pod2",
"selected": false
},
{
"text": "unknown",
"value": "unknown",
"selected": false
},
{
"text": "zte-pod1",
"value": "zte\\-pod1",
"selected": true
}
],
"query": "SHOW TAG VALUES WITH KEY = \"pod_name\"",
"refresh": false,
"regex": "",
"type": "query",
"useTags": false
},
{
"allFormat": "regex values",
"current": {
"tags": [],
"text": "All",
"value": "(os\\-nosdn\\-nofeature\\-ha|os\\-nosdn\\-ovs\\-ha|os\\-odl_l2\\-bgpvpn\\-ha|os\\-odl_l2\\-nofeature\\-ha|os\\-odl_l2\\-nofeature\\-noha|os\\-odl_l2\\-sfc\\-ha|os\\-odl_l3\\-nofeature\\-ha|os\\-onos\\-nofeature\\-ha)"
},
"datasource": "yardstick-vtc",
"includeAll": true,
"multi": true,
"multiFormat": "regex values",
"name": "SCENARIO",
"options": [
{
"selected": true,
"text": "All",
"value": "(os\\-nosdn\\-nofeature\\-ha|os\\-nosdn\\-ovs\\-ha|os\\-odl_l2\\-bgpvpn\\-ha|os\\-odl_l2\\-nofeature\\-ha|os\\-odl_l2\\-nofeature\\-noha|os\\-odl_l2\\-sfc\\-ha|os\\-odl_l3\\-nofeature\\-ha|os\\-onos\\-nofeature\\-ha)"
},
{
"selected": false,
"text": "os-nosdn-nofeature-ha",
"value": "os\\-nosdn\\-nofeature\\-ha"
},
{
"selected": false,
"text": "os-nosdn-ovs-ha",
"value": "os\\-nosdn\\-ovs\\-ha"
},
{
"selected": false,
"text": "os-odl_l2-bgpvpn-ha",
"value": "os\\-odl_l2\\-bgpvpn\\-ha"
},
{
"selected": false,
"text": "os-odl_l2-nofeature-ha",
"value": "os\\-odl_l2\\-nofeature\\-ha"
},
{
"selected": false,
"text": "os-odl_l2-nofeature-noha",
"value": "os\\-odl_l2\\-nofeature\\-noha"
},
{
"selected": false,
"text": "os-odl_l2-sfc-ha",
"value": "os\\-odl_l2\\-sfc\\-ha"
},
{
"selected": false,
"text": "os-odl_l3-nofeature-ha",
"value": "os\\-odl_l3\\-nofeature\\-ha"
},
{
"selected": false,
"text": "os-onos-nofeature-ha",
"value": "os\\-onos\\-nofeature\\-ha"
}
],
"query": "SHOW TAG VALUES WITH KEY = \"deploy_scenario\"",
"refresh": false,
"type": "query"
}
]
},
"annotations": {
"list": []
},
"schemaVersion": 8,
"version": 3,
"links": []
}