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
|
# File 'modules/role/manifests/cache/text_haproxy.pp', line 1
class role::cache::text_haproxy {
system::role { 'cache::text_haproxy':
description => 'text HAProxy/Varnish/ATS cache server',
}
include ::profile::base::production
include ::profile::cache::base
include ::profile::cache::haproxy
include ::profile::cache::varnish::frontend
include ::profile::prometheus::varnish_exporter
include ::profile::cache::varnish::frontend::text
include ::profile::trafficserver::backend
# varnishkafka statsv listens for special stats related requests
# and sends them to the 'statsv' topic in Kafka. A kafka consumer
# (called 'statsv') then consumes these and emits metrics.
include ::profile::cache::kafka::statsv
# varnishkafka eventlogging listens for eventlogging beacon
# requests and logs them to the eventlogging-client-side
# topic. EventLogging servers consume and process this
# topic into many JSON based kafka topics for further
# consumption.
include ::profile::cache::kafka::eventlogging
}
|