Commit 34b6e0b 1 parent 7f1895e commit 34b6e0b Copy full SHA for 34b6e0b
File tree 20 files changed +78
-10
lines changed
20 files changed +78
-10
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: xatu-discovery
3
3
description : Ethereum p2p monitoring tool that discovers node records.
4
4
home : https://github.com/ethpandaops/xatu
5
5
type : application
6
- version : 0.0.3
6
+ version : 0.0.4
7
7
maintainers :
8
8
- name : samcm
9
9
Original file line number Diff line number Diff line change 1
1
2
2
# xatu-discovery
3
3
4
- ![ Version: 0.0.3 ] ( https://img.shields.io/badge/Version-0.0.3 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
+ ![ Version: 0.0.4 ] ( https://img.shields.io/badge/Version-0.0.4 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
5
5
6
6
Ethereum p2p monitoring tool that discovers node records.
7
7
Original file line number Diff line number Diff line change @@ -64,3 +64,9 @@ Create the name of the service account to use
64
64
{ {- define " xatu-discovery.metricsPort" -} }
65
65
{ { (split " :" .Values.config.metricsAddr)._1 | default " :9090" } }
66
66
{ {- end -} }
67
+
68
+ { {- define " xatu-discovery.pprofPort" -} }
69
+ { {- if .Values.config.pprofAddr -} }
70
+ { { (split " :" .Values.config.pprofAddr)._1 | default " 6060" } }
71
+ { {- end -} }
72
+ { {- end -} }
Original file line number Diff line number Diff line change 72
72
- name : metrics
73
73
containerPort : {{ include "xatu-discovery.metricsPort" . }}
74
74
protocol : TCP
75
+ {{- if (include "xatu-discovery.pprofPort" .) }}
76
+ - name : pprof
77
+ containerPort : {{ include "xatu-discovery.pprofPort" . }}
78
+ protocol : TCP
79
+ {{- end }}
75
80
livenessProbe :
76
81
{{- toYaml .Values.livenessProbe | nindent 12 }}
77
82
readinessProbe :
Original file line number Diff line number Diff line change 11
11
targetPort : metrics
12
12
protocol : TCP
13
13
name : metrics
14
+ {{- if (include "xatu-discovery.pprofPort" .) }}
15
+ - port : {{ include "xatu-discovery.pprofPort" . }}
16
+ targetPort : pprof
17
+ protocol : TCP
18
+ name : pprof
19
+ {{- end }}
14
20
{{- if .Values.extraPorts }}
15
21
{{ toYaml .Values.extraPorts | nindent 4}}
16
22
{{- end }}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: xatu-mimicry
3
3
description : Ethereum p2p monitoring tool that collects data from the execution layer.
4
4
home : https://github.com/ethpandaops/xatu
5
5
type : application
6
- version : 0.0.3
6
+ version : 0.0.4
7
7
maintainers :
8
8
- name : samcm
9
9
Original file line number Diff line number Diff line change 1
1
2
2
# xatu-mimicry
3
3
4
- ![ Version: 0.0.3 ] ( https://img.shields.io/badge/Version-0.0.3 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
+ ![ Version: 0.0.4 ] ( https://img.shields.io/badge/Version-0.0.4 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
5
5
6
6
Ethereum p2p monitoring tool that collects data from the execution layer.
7
7
Original file line number Diff line number Diff line change @@ -64,3 +64,9 @@ Create the name of the service account to use
64
64
{ {- define " xatu-mimicry.metricsPort" -} }
65
65
{ { (split " :" .Values.config.metricsAddr)._1 | default " :9090" } }
66
66
{ {- end -} }
67
+
68
+ { {- define " xatu-mimicry.pprofPort" -} }
69
+ { {- if .Values.config.pprofAddr -} }
70
+ { { (split " :" .Values.config.pprofAddr)._1 | default " 6060" } }
71
+ { {- end -} }
72
+ { {- end -} }
Original file line number Diff line number Diff line change 72
72
- name : metrics
73
73
containerPort : {{ include "xatu-mimicry.metricsPort" . }}
74
74
protocol : TCP
75
+ {{- if (include "xatu-mimicry.pprofPort" .) }}
76
+ - name : pprof
77
+ containerPort : {{ include "xatu-mimicry.pprofPort" . }}
78
+ protocol : TCP
79
+ {{- end }}
75
80
livenessProbe :
76
81
{{- toYaml .Values.livenessProbe | nindent 12 }}
77
82
readinessProbe :
Original file line number Diff line number Diff line change 11
11
targetPort : metrics
12
12
protocol : TCP
13
13
name : metrics
14
+ {{- if (include "xatu-mimicry.pprofPort" .) }}
15
+ - port : {{ include "xatu-mimicry.pprofPort" . }}
16
+ targetPort : pprof
17
+ protocol : TCP
18
+ name : pprof
19
+ {{- end }}
14
20
{{- if .Values.extraPorts }}
15
21
{{ toYaml .Values.extraPorts | nindent 4}}
16
22
{{- end }}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: xatu-sentry
3
3
description : Ethereum p2p monitoring tool that runs along side a Ethereum consensus client and collects data via the consensus client's Beacon API.
4
4
home : https://github.com/ethpandaops/xatu
5
5
type : application
6
- version : 0.0.4
6
+ version : 0.0.5
7
7
maintainers :
8
8
- name : samcm
9
9
Original file line number Diff line number Diff line change 1
1
2
2
# xatu-sentry
3
3
4
- ![ Version: 0.0.4 ] ( https://img.shields.io/badge/Version-0.0.4 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
+ ![ Version: 0.0.5 ] ( https://img.shields.io/badge/Version-0.0.5 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
5
5
6
6
Ethereum p2p monitoring tool that runs along side a Ethereum consensus client and collects data via the consensus client's Beacon API.
7
7
Original file line number Diff line number Diff line change @@ -64,3 +64,9 @@ Create the name of the service account to use
64
64
{ {- define " xatu-sentry.metricsPort" -} }
65
65
{ { (split " :" .Values.config.metricsAddr)._1 | default " :9090" } }
66
66
{ {- end -} }
67
+
68
+ { {- define " xatu-sentry.pprofPort" -} }
69
+ { {- if .Values.config.pprofAddr -} }
70
+ { { (split " :" .Values.config.pprofAddr)._1 | default " 6060" } }
71
+ { {- end -} }
72
+ { {- end -} }
Original file line number Diff line number Diff line change 72
72
- name : metrics
73
73
containerPort : {{ include "xatu-sentry.metricsPort" . }}
74
74
protocol : TCP
75
+ {{- if (include "xatu-sentry.pprofPort" .) }}
76
+ - name : pprof
77
+ containerPort : {{ include "xatu-sentry.pprofPort" . }}
78
+ protocol : TCP
79
+ {{- end }}
75
80
livenessProbe :
76
81
{{- toYaml .Values.livenessProbe | nindent 12 }}
77
82
readinessProbe :
Original file line number Diff line number Diff line change 11
11
targetPort : metrics
12
12
protocol : TCP
13
13
name : metrics
14
+ {{- if (include "xatu-sentry.pprofPort" .) }}
15
+ - port : {{ include "xatu-sentry.pprofPort" . }}
16
+ targetPort : pprof
17
+ protocol : TCP
18
+ name : pprof
19
+ {{- end }}
14
20
{{- if .Values.extraPorts }}
15
21
{{ toYaml .Values.extraPorts | nindent 4}}
16
22
{{- end }}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: xatu-server
3
3
description : Ethereum p2p monitoring tool that collects events from and controls various Xatu clients.
4
4
home : https://github.com/ethpandaops/xatu
5
5
type : application
6
- version : 0.0.6
6
+ version : 0.0.7
7
7
maintainers :
8
8
- name : samcm
9
9
Original file line number Diff line number Diff line change 1
1
2
2
# xatu-server
3
3
4
- ![ Version: 0.0.6 ] ( https://img.shields.io/badge/Version-0.0.6 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
+ ![ Version: 0.0.7 ] ( https://img.shields.io/badge/Version-0.0.7 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
5
5
6
6
Ethereum p2p monitoring tool that collects events from and controls various Xatu clients.
7
7
Original file line number Diff line number Diff line change @@ -62,9 +62,15 @@ Create the name of the service account to use
62
62
{ {- end } }
63
63
64
64
{ {- define " xatu-server.httpPort" -} }
65
- { { (split " :" .Values.config.addr)._1 | default " : 8080" } }
65
+ { { (split " :" .Values.config.addr)._1 | default " 8080" } }
66
66
{ {- end } }
67
67
68
68
{ {- define " xatu-server.metricsPort" -} }
69
- { { (split " :" .Values.config.metricsAddr)._1 | default " :9090" } }
69
+ { { (split " :" .Values.config.metricsAddr)._1 | default " 9090" } }
70
+ { {- end -} }
71
+
72
+ { {- define " xatu-server.pprofPort" -} }
73
+ { {- if .Values.config.pprofAddr -} }
74
+ { { (split " :" .Values.config.pprofAddr)._1 | default " 6060" } }
75
+ { {- end -} }
70
76
{ {- end -} }
Original file line number Diff line number Diff line change 75
75
- name : metrics
76
76
containerPort : {{ include "xatu-server.metricsPort" . }}
77
77
protocol : TCP
78
+ {{- if (include "xatu-server.pprofPort" .) }}
79
+ - name : pprof
80
+ containerPort : {{ include "xatu-server.pprofPort" . }}
81
+ protocol : TCP
82
+ {{- end }}
78
83
{{- if .Values.extraPodPorts }}
79
84
{{ toYaml .Values.extraPodPorts | nindent 10 }}
80
85
{{- end }}
Original file line number Diff line number Diff line change 15
15
targetPort : metrics
16
16
protocol : TCP
17
17
name : metrics
18
+ {{- if (include "xatu-server.pprofPort" .) }}
19
+ - port : {{ include "xatu-server.pprofPort" . }}
20
+ targetPort : pprof
21
+ protocol : TCP
22
+ name : pprof
23
+ {{- end }}
18
24
{{- if .Values.extraPorts }}
19
25
{{ toYaml .Values.extraPorts | nindent 4}}
20
26
{{- end }}
You can’t perform that action at this time.
0 commit comments