committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
28 changed files with 3177 additions and 381 deletions
-
2k8s/seaweedfs/Chart.yaml
-
6k8s/seaweedfs/templates/filer-service.yaml
-
18k8s/seaweedfs/templates/filer-servicemonitor.yaml
-
3k8s/seaweedfs/templates/filer-statefulset.yaml
-
3k8s/seaweedfs/templates/s3-deployment.yaml
-
6k8s/seaweedfs/templates/s3-service.yaml
-
18k8s/seaweedfs/templates/s3-servicemonitor.yaml
-
6k8s/seaweedfs/templates/volume-service.yaml
-
18k8s/seaweedfs/templates/volume-servicemonitor.yaml
-
3k8s/seaweedfs/templates/volume-statefulset.yaml
-
5k8s/seaweedfs/values.yaml
-
13other/java/client/src/main/proto/filer.proto
-
2362other/metrics/grafana_seaweedfs_k8s.json
-
4weed/Makefile
-
2weed/command/master.go
-
5weed/filer/abstract_sql/abstract_sql_store_kv.go
-
5weed/filer/cassandra/cassandra_store_kv.go
-
16weed/filesys/dirty_page.go
-
18weed/filesys/filehandle.go
-
13weed/pb/filer.proto
-
939weed/pb/filer_pb/filer.pb.go
-
28weed/s3api/s3api_bucket_handlers.go
-
22weed/server/filer_grpc_server.go
-
6weed/server/webdav_server.go
-
9weed/stats/metrics.go
-
8weed/storage/store.go
-
2weed/util/constants.go
-
2weed/wdclient/masterclient.go
@ -1,4 +1,4 @@ |
|||
apiVersion: v1 |
|||
description: SeaweedFS |
|||
name: seaweedfs |
|||
version: 2.04 |
|||
version: 2.05 |
@ -0,0 +1,18 @@ |
|||
{{- if .Values.filer.metricsPort }} |
|||
apiVersion: monitoring.coreos.com/v1 |
|||
kind: ServiceMonitor |
|||
metadata: |
|||
name: {{ template "seaweedfs.name" . }}-filer |
|||
namespace: {{ .Release.Namespace }} |
|||
labels: |
|||
app: {{ template "seaweedfs.name" . }} |
|||
component: filer |
|||
spec: |
|||
endpoints: |
|||
- interval: 30s |
|||
port: swfs-filer-metrics |
|||
scrapeTimeout: 5s |
|||
selector: |
|||
app: {{ template "seaweedfs.name" . }} |
|||
component: filer |
|||
{{- end }} |
@ -0,0 +1,18 @@ |
|||
{{- if .Values.s3.metricsPort }} |
|||
apiVersion: monitoring.coreos.com/v1 |
|||
kind: ServiceMonitor |
|||
metadata: |
|||
name: {{ template "seaweedfs.name" . }}-s3 |
|||
namespace: {{ .Release.Namespace }} |
|||
labels: |
|||
app: {{ template "seaweedfs.name" . }} |
|||
component: s3 |
|||
spec: |
|||
endpoints: |
|||
- interval: 30s |
|||
port: swfs-s3-metrics |
|||
scrapeTimeout: 5s |
|||
selector: |
|||
app: {{ template "seaweedfs.name" . }} |
|||
component: s3 |
|||
{{- end }}} |
@ -0,0 +1,18 @@ |
|||
{{- if .Values.volume.metricsPort }} |
|||
apiVersion: monitoring.coreos.com/v1 |
|||
kind: ServiceMonitor |
|||
metadata: |
|||
name: {{ template "seaweedfs.name" . }}-volume |
|||
namespace: {{ .Release.Namespace }} |
|||
labels: |
|||
app: {{ template "seaweedfs.name" . }} |
|||
component: volume |
|||
spec: |
|||
endpoints: |
|||
- interval: 30s |
|||
port: swfs-volume-metrics |
|||
scrapeTimeout: 5s |
|||
selector: |
|||
app: {{ template "seaweedfs.name" . }} |
|||
component: volume |
|||
{{- end }}} |
2362
other/metrics/grafana_seaweedfs_k8s.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
939
weed/pb/filer_pb/filer.pb.go
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
Write
Preview
Loading…
Cancel
Save
Reference in new issue