Skip to Content.
Sympa Menu

perfsonar-user - [perfsonar-user] perfSonar UDP Grid Question

Subject: perfSONAR User Q&A and Other Discussion

List archive

[perfsonar-user] perfSonar UDP Grid Question


Chronological Thread 
  • From: "Yamamoto, Miguel" <>
  • To: "" <>
  • Subject: [perfsonar-user] perfSonar UDP Grid Question
  • Date: Thu, 22 May 2025 18:50:14 +0000
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=ucsf.edu; dmarc=pass action=none header.from=ucsf.edu; dkim=pass header.d=ucsf.edu; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=1QZeTorJhGn+D/DV4BAREVOZaik246rQ+xM1eHwCIlk=; b=xxSyIwnLScyD4uC2dkY/hauPag+R4nRMzJU2wYS9HexPJ+b/rgxm5xXdzUtvV9/+azhjv5oIqbUeIhRtC0LSzMaBhr2Ot5fb1autVH5QuSoCQmwm7SbhPkmVKDWVcxgclvS/P6VwYDNuSMPM6xviy6Q16X+EjdluCz2V2HOTUOZ44CP0FqfFSYi5uQ3sxeGpFUDMQ80VWjeWc5f8UC85g/W/jHyyBsZg9TJlA21DtMukbuaTNEShOmXfI+DgXNe8+5yYSOWzyiW38BPprQIZnCgBK1B4zV8a0hijCl/j+nJmXDnkVPJ//a0254H6nc+HThMYYeOl7DTzGsQNwA3KZg==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=WNtSg9jDtwifKWM63wdNyYDQDAy06z8uVdaGGthgvUHiBRKknC72WDxVertXJAn4i0+tSphTZy2+vAeZlXjzk4duL5m22T1U8hbmkYiGFtpgD9PwfX/1URzZYBwOk2usAaU2i3VunbipkeT+biuPZJzSe5rI63xZ2ZNtBdu1fo6sVgbtdl8Bly62suyU3Be3P7MidbQR7x1IDrlwFJa7XrzY3s2DEz78VMXxHP0yXte9heohAckaDistiIKmTE8AIfyZ4rkn898aRKiu14dnyHlBp+KvaLdqw8rDtuExxRjz+h9oDY7nkrhuw4INaeG3K0vVHzqM6zmJOF14Gm/ibA==

 

Hi,

 

Hoping to get guidance on showing throughput UDP in the perfSonar grid. When the template gets applied, there will be two grids showing, but the same TCP Throughput with titles "throughput_task" and "throughput_task_udp". Is there something in the grafana-agent.conf I need to set to show the UDP? Something like "udp: true"?  or something in the pSConfig needs to be set?

 

Thanks,
Miguel


The grafana-agent.conf:

 

    "throughput_avg": {

      "task_selector": {

        "test_types": [

          "throughput"

        ]

      },

      "datasource_selector": "auto",

      "stat_field": "result.throughput",

      "stat_type": "avg",

      "value_field": "Average",

      "value_text": "Throughput",

      "unit": "bps",

      "matrix_url_var1": "source",

      "matrix_url_var2": "dest",

    },



Two task/test created for the pSConfig Template :

"throughput_task":

{

"group": "throughput_group",

"test": "throughput_test",

"archives": ["central_archive"],

"schedule": "every_4_hours"

"tools": ["iperf3"]

}

"throughput_task_udp":

{

"group": "throughput_group_udp",

"test": "throughput_udp_test",

“archives": ["central_archive"],

"schedule": "every_4_hours"

"tools": ["iperf3"]

}

 

"throughput_test":

{

"spec":

 {

  "source": "{% address[0] %}",

  "dest": "{% address[1] %}",

  "duration": "PT30S",

},

"type": "throughput"

}                   

"throughput_udp_test":

{

  "spec":

  {

  "source": "{% address[0] %}",

 "dest": "{% address[1] %}",

  "duration": "PT30S",

  "ip-version": 4,

  "udp": true,

  },

  "type": "throughput"

}




Archive powered by MHonArc 2.6.24.

Top of Page