File tree 3 files changed +48
-2
lines changed
3 files changed +48
-2
lines changed Original file line number Diff line number Diff line change 6
6
- CGO_ENABLED=0
7
7
checksum :
8
8
name_template : ' {{ .ProjectName }}_checksums.txt'
9
- changelog :
10
- skip : true
11
9
release :
12
10
draft : true
13
11
prerelease : auto
12
+
13
+ archives :
14
+ - replacements :
15
+ darwin : Darwin
16
+ linux : Linux
17
+ amd64 : x86_64
18
+
14
19
builds :
15
20
- main : ./cmd
16
21
goos :
17
22
- linux
18
23
- darwin
19
24
goarch :
20
25
- amd64
26
+ - arm64
21
27
mod_timestamp : ' {{ .CommitTimestamp }}'
22
28
flags :
23
29
- -trimpath
30
+ nfpms :
31
+ -
32
+ maintainer :
Vitkovskiy Vladimir <[email protected] >
33
+ formats :
34
+ - deb
35
+ description : |-
36
+ file.d is a tool for building data pipelines:
37
+ read, process and output events.
38
+ homepage : https://ozontech.github.io/file.d/
39
+ vendor : Ozon Tech
40
+ bindir : /usr/bin
41
+ contents :
42
+ - src : ./releaser/config.yaml
43
+ dst : /etc/file.d/config.yaml
44
+ type : config
45
+ - src : ./releaser/file.d.service
46
+ dst : /etc/systemd/system/file.d.service
Original file line number Diff line number Diff line change
1
+ pipelines :
2
+ welcome :
3
+ input :
4
+ type : file
5
+ persistence_mode : async
6
+ watching_dir : /tmp/
7
+ filename_pattern : welcome.json
8
+ offsets_file : /tmp/offsets.yaml
9
+ offsets_op : reset
10
+ output :
11
+ type : stdout
Original file line number Diff line number Diff line change
1
+ [Unit]
2
+ Description =File.d
3
+
4
+ [Service]
5
+ ExecStart =/usr/bin/file.d --config /etc/file.d/config.yaml
6
+ Restart =on-failure
7
+ MemoryAccounting =true
8
+ MemoryHigh =1536M
9
+ MemoryMax =2G
10
+
11
+ [Install]
12
+ WantedBy =multi-user.target
You can’t perform that action at this time.
0 commit comments