-
Notifications
You must be signed in to change notification settings - Fork 213
/
parca.yaml
46 lines (43 loc) · 1.31 KB
/
parca.yaml
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
object_storage:
bucket:
type: "FILESYSTEM"
config:
directory: "./data"
# Optionally configure targets to be scraped. It is recommended to start
# with just Parca Agent CPU profiling and add scraping where valuable.
# Scraping tends to produce a lot more data than Parca Agent CPU which
# results in memory usage by the server.
#
# scrape_configs:
# - job_name: "parca"
# scrape_interval: "10s"
# static_configs:
# - targets: [ '127.0.0.1:7070' ]
# Nested under the job config:
#
# Only keep a certain type of profile from a scrape. For example the Go
# runtime memory profiles contain memory inuse-space bytes and objects as
# well as allocated space and objects. Often times inuse-space bytes is
# the one that is most interest to extract from the Go runtime.
#
# profiling_config:
# pprof_config:
# memory:
# keep_sample_type:
# - type: inuse_space
# unit: bytes
#
# Nested under the job config:
#
# Custom scrape endpoints can be added like just like the example below.
# The profile name will be `fgprof`, and it will be scraped from the given
# path and since it is a delta profile, a query parameter
# ?seconds=<scrape-interval> will be added.
#
# profiling_config:
# pprof_config:
# fgprof:
# enabled: true
# path: /debug/pprof/fgprof
# delta: true
#