Puppet Class: profile::prometheus::nft_throttling_denylist

Defined in:
modules/profile/manifests/prometheus/nft_throttling_denylist.pp

Summary

manages prometheus metrics for nftables based throttling

Overview

SPDX-License-Identifier: Apache-2.0

Parameters:

  • ensure (Wmflib::Ensure) (defaults to: lookup('profile::prometheus::nft_throttling_denylist::ensure', {default_value => present}))


3
4
5
6
7
8
9
10
# File 'modules/profile/manifests/prometheus/nft_throttling_denylist.pp', line 3

class profile::prometheus::nft_throttling_denylist (
        Wmflib::Ensure $ensure = lookup('profile::prometheus::nft_throttling_denylist::ensure',
    {default_value => present}),
) {
    class {'prometheus::nft_throttling_denylist':
        ensure => $ensure,
    }
}