Skip to Content.
Sympa Menu

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

Subject: perfSONAR User Q&A and Other Discussion

List archive

Re: [perfsonar-user] perfSonar UDP Grid Question


Chronological Thread 
  • From: "Yamamoto, Miguel" <>
  • To: Andrew Lake <>, "" <>
  • Subject: Re: [perfsonar-user] perfSonar UDP Grid Question
  • Date: Wed, 28 May 2025 21:04:21 +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=udY6jUNxGuCBl6C/vfXoqHv5hNhWTjWiIH0ojf4TI6U=; b=whdP9ALpwGM3qz1L0pjVmgvGW08qYm7xeBJ+zLxM2GqMHhcQ5WfTNS60BpHnkAS4QQCnwsW7rezSXYdk3AFp8TY4wg/ufknNUZrLKusT+kuAT/9JltxpGK5Rf/wnlqcbPbJT8ggMa4IKNSzewymevC19x7Gnl/88aIxziiS7oD9DJ2gguXKPdnV+IKRKI4bDdWbc9Yj2HOPwqT8t8yeE0T3O4p5C1m6eUluna3lseFBHfJc/ossSW54VlULcq4d8404MbdJN95KoBl5CfNrHpJ23GkXTtAo+A8JKLxbCWODYi0TjkIDkVvPW6XN6xShpbpvGllHRnUhclc6qDkS1WQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=K3XcAvlCQZUcG6Y8mpvLv5v7m/YjMWChGALmv0GMihI34epdkMU/nrAA4uhJzmBJQM8b+iv6T+XeL9xt9V3yKWa0jV346oHYxWdS7KMWwNcKvSkgFpQOTYrpZYMidPgpB3Q5BOVMZS7HLr/Z2m5zmtu3324r1i/vgahqS75gLO7PwcjtJrWbXZam23/LzinQRGS+I6LK9gzBdAtJLHE6KGFKFrHvhD5VSdXMHSL+r66MW/hW4w2O5aeoCJ3pF6x471adsyboedAekKB5CDedsN60bkDIoeRB4h3fhpUq15eJit8WSuIOfErN3eFSXvyF/vgba8UmEBq7n6wa1x7mfQ==

Hi Andrew,

Thanks for the examples. However, when I did the change, it still shows the same TCP rather than UDP for both graphs.

Also, is there a way to change the graph to show a set name defined in the pSConfig template rather than IP?

    "addresses": {

        "Example": {

            "_meta": {

                "display-name": "Example Name",   - This is what I want to display in the graph

                "display-url": "Example Website"

            },

            "address": "{IP}" - This is the one showing on the graphs

        },

Thanks for all the help!

 

From: Andrew Lake <>
Date: Thursday, May 22, 2025 at 4:42
PM
To: Yamamoto, Miguel <>, <>
Subject: Re: [perfsonar-user] perfSonar UDP Grid Question

Hi, I think you need to add a display-name for those tasks and they will show-up. See example here https://github.com/perfsonar/psconfig/blob/ce4a4807f6579044502af946ff5cb2e3d0042323/psconfig/perfsonar-psconfig/doc/skeleton.json#L94-L97. A discussion

ZjQcmQRYFpfptBannerStart

This Message Is From an External Sender

This message came from outside your organization.

 

ZjQcmQRYFpfptBannerEnd

Hi,

 

I think you need to add a display-name for those tasks and they will show-up. See example here https://github.com/perfsonar/psconfig/blob/ce4a4807f6579044502af946ff5cb2e3d0042323/psconfig/perfsonar-psconfig/doc/skeleton.json#L94-L97. A discussion of what those fields mean can be found here: https://docs.perfsonar.net/psconfig_grafana_agent.html#organizing-grids-and-dashboards

 

Grafana uses the display-task-name to filter the results that appear in the grid, so once that gets set it should be all set.

 

Thanks,

Andy

 

 

On May 22, 2025 at 5:17:56PM, Yamamoto, Miguel () wrote:

 

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"

}

--
To unsubscribe from this list: https://lists.internet2.edu/sympa/signoff/perfsonar-user




Archive powered by MHonArc 2.6.24.

Top of Page