Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for istio_tcp_connections_closed_total (0.36 sec)

  1. tests/integration/telemetry/policy/traffic_allow_any_test.go

    				},
    			},
    		},
    		// TODO add HTTPS through gateway
    		{
    			Name:     "TCP",
    			PortName: "tcp",
    			Expected: Expected{
    				Metric:          "istio_tcp_connections_closed_total",
    				PromQueryFormat: `sum(istio_tcp_connections_closed_total{reporter="source",destination_service_name="PassthroughCluster",source_workload="client-v1"})`,
    				StatusCode:      http.StatusOK,
    				Protocol:        "TCP",
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  2. tests/integration/telemetry/policy/traffic_registry_only_test.go

    					},
    				},
    				StatusCode: http.StatusBadGateway,
    			},
    		},
    		{
    			Name:     "HTTPS Traffic",
    			PortName: "https",
    			Expected: Expected{
    				Query: prometheus.Query{
    					Metric:      "istio_tcp_connections_closed_total",
    					Aggregation: "sum",
    					Labels: map[string]string{
    						"destination_service_name": "BlackHoleCluster",
    					},
    				},
    			},
    		},
    		{
    			Name:     "HTTPS Traffic Conflict",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. tests/integration/telemetry/policy/helper_test.go

    	//
    	// 2. https case:
    	//    client ----> Hits no listener -> 0.0.0.0_150001 -> ALLOW_ANY/REGISTRY_ONLY
    	//    Metric is istio_tcp_connections_closed_total i.e. TCP
    	//
    	// 3. https conflict case:
    	//    client ----> Hits listener 0.0.0.0_9443
    	//    Metric is istio_tcp_connections_closed_total i.e. TCP
    	//
    	// 4. http_egress
    	//    client ) ---HTTP request (Host: some-external-site.com----> Hits listener 0.0.0.0_80 ->
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/queries.libsonnet

                  )
                |||
              ),
              self.query(
                'Closed ({{pod}})',
                |||
                  -sum by (pod) (
                    rate(
                      istio_tcp_connections_closed_total{%(podLabels)s}
                    [$__rate_interval])
                  )
                |||
              ),
            ],
    
          bytes:
            [
              self.query(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/ztunnel-dashboard.gen.json

                {
                   "datasource": {
                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "-sum by (pod) (\n  rate(\n    istio_tcp_connections_closed_total{pod=~\"ztunnel-.*\"}\n  [$__rate_interval])\n)",
                   "legendFormat": "Closed ({{pod}})"
                }
             ],
             "title": "Connections",
             "type": "timeseries"
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

    (pod) (\n  rate(\n    istio_tcp_connections_opened_total{pod=~\"ztunnel-.*\"}\n  [$__rate_interval])\n)","legendFormat":"Opened ({{pod}})"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"-sum by (pod) (\n  rate(\n    istio_tcp_connections_closed_total{pod=~\"ztunnel-.*\"}\n  [$__rate_interval])\n)","legendFormat":"Closed ({{pod}})"}],"title":"Connections","type":"timeseries"},{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"Bytes sent and recieved per instan...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top