Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused parameter #37

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
39 changes: 15 additions & 24 deletions REFERENCE.md
Expand Up @@ -40,7 +40,7 @@ Init class of Thanos module. It can installes Thanos binaries and manages compon

#### Examples

#####
#####

```puppet
include thanos
Expand Down Expand Up @@ -394,7 +394,7 @@ This class install Compact as service to continuously compacts blocks in an obje

#### Examples

#####
#####

```puppet
include thanos::compact
Expand Down Expand Up @@ -422,7 +422,6 @@ The following parameters are available in the `thanos::compact` class:
* [`wait`](#wait)
* [`wait_interval`](#wait_interval)
* [`downsampling_disable`](#downsampling_disable)
* [`block_sync_concurrency`](#block_sync_concurrency)
* [`block_viewer_global_sync_block_interval`](#block_viewer_global_sync_block_interval)
* [`compact_concurrency`](#compact_concurrency)
* [`delete_delay`](#delete_delay)
Expand Down Expand Up @@ -579,14 +578,6 @@ Disables downsampling. This is not recommended as querying long time ranges with

Default value: ``false``

##### <a name="block_sync_concurrency"></a>`block_sync_concurrency`

Data type: `Integer`

Number of goroutines to use when syncing block metadata from object storage.

Default value: `20`

##### <a name="block_viewer_global_sync_block_interval"></a>`block_viewer_global_sync_block_interval`

Data type: `String`
Expand Down Expand Up @@ -670,7 +661,7 @@ This class install and manage configuration files like object store and tracing.

#### Examples

#####
#####

```puppet
include thanos::config
Expand Down Expand Up @@ -774,7 +765,7 @@ This class install Thanos requirements and binaries.

#### Examples

#####
#####

```puppet
include thanos::install
Expand Down Expand Up @@ -971,7 +962,7 @@ This class install Query as service query node exposing PromQL enabled Query API

#### Examples

#####
#####

```puppet
include thanos::query
Expand Down Expand Up @@ -1379,7 +1370,7 @@ This class install Query Frontend as service that can be put in front of Thanos

#### Examples

#####
#####

```puppet
include thanos::query
Expand Down Expand Up @@ -1598,7 +1589,7 @@ This class install Receiver as service that implements the Prometheus Remote Wri

#### Examples

#####
#####

```puppet
include thanos::downsample
Expand Down Expand Up @@ -1941,7 +1932,7 @@ This class install Rule as service ruler evaluating Prometheus rules against giv

#### Examples

#####
#####

```puppet
include thanos::rule
Expand Down Expand Up @@ -2352,7 +2343,7 @@ This class install Sidecar as service sidecar for Prometheus server.

#### Examples

#####
#####

```puppet
include thanos::sidecar
Expand Down Expand Up @@ -2617,7 +2608,7 @@ This class install Store as service store node giving access to blocks in a buck

#### Examples

#####
#####

```puppet
include thanos::store
Expand Down Expand Up @@ -2947,7 +2938,7 @@ This class install Web interface for remote storage bucket.

#### Examples

#####
#####

```puppet
include thanos::bucket_web
Expand Down Expand Up @@ -3127,7 +3118,7 @@ Manage Index cache configuration file.

#### Examples

#####
#####

```puppet
thanos::config::index_cache { '/etc/thanos/index_cache.yaml':
Expand Down Expand Up @@ -3173,7 +3164,7 @@ Manage Storage configuration file.

#### Examples

#####
#####

```puppet
thanos::config::storage { '/etc/thanos/storage.yaml':
Expand Down Expand Up @@ -3227,7 +3218,7 @@ Manage Tracing configuration file

#### Examples

#####
#####

```puppet
thanos::config::tracing { '/etc/thanos/tracing.yaml':
Expand Down Expand Up @@ -3270,7 +3261,7 @@ This defined type create component's service.

#### Examples

#####
#####

```puppet
thanos::resources::service { 'component_name':
Expand Down
4 changes: 0 additions & 4 deletions manifests/compact.pp
Expand Up @@ -41,8 +41,6 @@
# @param downsampling_disable
# Disables downsampling. This is not recommended as querying long time ranges without non-downsampled data is
# not efficient and useful e.g it is not possible to render all samples for a human eye anyway
# @param block_sync_concurrency
# Number of goroutines to use when syncing block metadata from object storage.
# @param block_viewer_global_sync_block_interval
# Repeat interval for syncing the blocks between local and remote view for /global Block Viewer UI.
# @param compact_concurrency
Expand Down Expand Up @@ -94,7 +92,6 @@
Boolean $wait = false,
String $wait_interval = '5m',
Boolean $downsampling_disable = false,
Integer $block_sync_concurrency = 20,
String $block_viewer_global_sync_block_interval = '1m',
Integer $compact_concurrency = 1,
String $delete_delay = '48h',
Expand Down Expand Up @@ -130,7 +127,6 @@
'wait' => $wait,
'wait-interval' => $wait_interval,
'downsampling.disable' => $downsampling_disable,
'block-sync-concurrency' => $block_sync_concurrency,
'block-viewer.global.sync-block-interval' => $block_viewer_global_sync_block_interval,
'compact.concurrency' => $compact_concurrency,
'delete-delay' => $delete_delay,
Expand Down
1 change: 0 additions & 1 deletion spec/classes/compact_spec.rb
Expand Up @@ -39,7 +39,6 @@
'wait' => false,
'wait-interval' => '5m',
'downsampling.disable' => false,
'block-sync-concurrency' => 20,
'block-viewer.global.sync-block-interval' => '1m',
'compact.concurrency' => 1,
'delete-delay' => '48h',
Expand Down