forked from meshery/meshery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperformance_spec.go
120 lines (107 loc) · 4.5 KB
/
performance_spec.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package models
import (
"time"
)
// Environment - represents a kubernetes environment
type Environment struct {
Kubernetes string `yaml:"kubernetes,omitempty"`
NodeCount int `yaml:"node_count,omitempty"`
}
// MeshConfig - represents a service mesh config
type MeshConfig struct {
MeshPolicyEnabled bool `yaml:"mesh_policy_enabled,omitempty"`
MeshTelemetryEnabled bool `yaml:"mesh_telemetry_enabled,omitempty"`
MtlsEnabled bool `yaml:"mtls_enabled,omitempty"`
ProxyConcurrency int `yaml:"proxy_concurrency,omitempty"`
}
// MeshClientConfig - represents a load test client config
type MeshClientConfig struct {
Internal bool `yaml:"internal,omitempty"`
Protocol string `yaml:"protocol,omitempty"`
Connections int `yaml:"connections,omitempty"`
Rps float64 `yaml:"rps,omitempty"`
LatenciesMs *LatenciesMs `yaml:"latencies_ms,omitempty"`
}
// LatenciesMs - represents a collection of important latencies
type LatenciesMs struct {
Min float64 `yaml:"min,omitempty"`
Average float64 `yaml:"average,omitempty"`
P50 float64 `yaml:"p50,omitempty"`
P90 float64 `yaml:"p90,omitempty"`
P99 float64 `yaml:"p99,omitempty"`
Max float64 `yaml:"max,omitempty"`
}
// IngressGateway - holds ingress gateway info
type IngressGateway struct {
Count int `yaml:"count,omitempty"`
CPUMCores float64 `yaml:"cpu_mCores,omitempty"`
MemMb float64 `yaml:"mem_mb,omitempty"`
Rps float64 `yaml:"rps,omitempty"`
Bps float64 `yaml:"bps,omitempty"`
}
// Sidecars - holds sidecars info
type Sidecars struct {
Count int `yaml:"count,omitempty"`
CPUMCores float64 `yaml:"cpu_mCores,omitempty"`
MemMb float64 `yaml:"mem_mb,omitempty"`
Rps float64 `yaml:"rps,omitempty"`
Bps float64 `yaml:"bps,omitempty"`
}
// MeshTelemetry - holds overall Mesh info
type MeshTelemetry struct {
Count int `yaml:"count,omitempty"`
CPUMCores float64 `yaml:"cpu_mCores,omitempty"`
MemMb float64 `yaml:"mem_mb,omitempty"`
Rps float64 `yaml:"rps,omitempty"`
}
// MeshPolicy - holds MeshPolicy info
type MeshPolicy struct {
Count int `yaml:"count,omitempty"`
CPUMCores float64 `yaml:"cpu_mCores,omitempty"`
MemMb float64 `yaml:"mem_mb,omitempty"`
Rps float64 `yaml:"rps,omitempty"`
CacheHitRate float64 `yaml:"cache_hit_rate,omitempty"`
}
// MeshControlPlane - holds control plan info
type MeshControlPlane struct {
Count int `yaml:"count,omitempty"`
CPUMCores float64 `yaml:"cpu_mCores,omitempty"`
MemMb float64 `yaml:"mem_mb,omitempty"`
Endpoints int `yaml:"endpoints,omitempty"`
Services int `yaml:"services,omitempty"`
Sidecars int `yaml:"sidecars,omitempty"`
VirtualServices int `yaml:"virtual_services,omitempty"`
DestinationRules int `yaml:"destination_rules,omitempty"`
LdsLatencyMs float64 `yaml:"lds_latency_ms,omitempty"`
CdsLatencyMs float64 `yaml:"cds_latency_ms,omitempty"`
}
// Workload - holds workload info
type Workload struct {
Name string `yaml:"name,omitempty"`
Count int `yaml:"count,omitempty"`
CPUMCores float64 `yaml:"cpu_mCores,omitempty"`
MemMb float64 `yaml:"mem_mb,omitempty"`
}
// Metrics - holds overall metrics info
type Metrics struct {
IngressGateway *IngressGateway `yaml:"ingress_gateway,omitempty"`
Sidecars *Sidecars `yaml:"sidecars,omitempty"`
MeshTelemetry *MeshTelemetry `yaml:"mesh_telemetry,omitempty"`
MeshPolicy *MeshPolicy `yaml:"mesh_policy,omitempty"`
MeshControlPlane *MeshControlPlane `yaml:"mesh_control_plane,omitempty"`
IndividualWorkload *Workload `yaml:"individual_workload_1,omitempty"`
}
// PerformanceSpec - represents SMP, see here https://github.com/layer5io/service-mesh-performance-specification
type PerformanceSpec struct {
SMPVersion string `yaml:"smp_version,omitempty"`
id string `yaml:"id,omitempty"`
labels map[string]string `yaml:"labels,omitempty"`
StartTime time.Time `yaml:"start_time,omitempty"`
EndTime time.Time `yaml:"end_time,omitempty"`
Latencies *LatenciesMs `yaml:"latencies_ms,omitempty"`
ActualQPS float64 `yaml:"actual_qps,omitempty"`
DetailsURI string `yaml:"details_uri,omitempty"`
TestID string `yaml:"test_id,omitempty"`
MeshConfigID string `yaml:"mesh_config_id,omitempty"`
EnvID string `yaml:"env_id,omitempty"`
}