Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tcpRequests (0.07 sec)

  1. manifests/addons/dashboards/istio-mesh.libsonnet

        panels.tables.requests('HTTP/gRPC Workloads', queries.httpWorkloads, 'Request information for HTTP services') + {
          gridPos+: {
            h: 16,
            w: 24,
            y: 10,
          },
        },
        panels.tables.tcpRequests('TCP Workloads', queries.tcpWorkloads, 'Bytes sent and recieived information for TCP services') + {
          gridPos+: {
            h: 16,
            w: 24,
            y: 16+10,
          },
        },
      ]
      +
      grid.makeGrid([
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/panels.libsonnet

            + override.byName.withProperty('custom.hidden', true),
            override.byName.new('Time')
            + override.byName.withProperty('custom.hidden', true),
          ]),
    
        tcpRequests(title, targets, desc=''):
          self.base(title, targets, desc)
          + table.queryOptions.withTransformations({ id: 'merge' })
          + table.standardOptions.withOverrides([
            // Query name/unit
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top