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

[WIP] Add rudimentary downsampling for m3coordinator #744

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 65 additions & 8 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 22 additions & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ import:
- package: github.com/m3db/m3em
version: ed532baee45a440f0b08b6893c816634c6978d4d

- package: github.com/m3db/m3aggregator
version: fd38c07d1a94b8598b6839a9c471e0a6feacfafb

- package: github.com/m3db/m3ninx
version: 7556fa8339674f1d9f559486d1feca18c17d1190

- package: github.com/m3db/bitset
version: 07973db6b78acb62ac207d0538055e874b49d90d

Expand Down Expand Up @@ -54,6 +60,7 @@ import:

- package: github.com/golang/protobuf
version: ^1.1.0

subpackages:
- proto
- ptypes/timestamp
Expand Down Expand Up @@ -145,7 +152,7 @@ import:
version: ^2.2.6

- package: github.com/m3db/m3metrics
version: 17e4ddf89f2b0c8fbb16b6d5b71a871b793d2a00
version: f22d8684fa8b42ff30f1d68f6f2be5e465db9a9d
subpackages:
- policy

Expand All @@ -161,14 +168,28 @@ import:
subpackages:
- cmp

# START_PROMETHEUS_DEPS
- package: github.com/prometheus/prometheus
version: 998dfcbac689ae832ea64ca134fcb096f61a7f62

# To avoid prometheus/prometheus dependencies from breaking,
# pin the transitive dependencies
- package: github.com/prometheus/common
version: 9e0844febd9e2856f839c9cb974fbd676d1755a8

- package: github.com/prometheus/procfs
version: a1dba9ce8baed984a2495b658c82687f8157b98f

- package: github.com/prometheus/tsdb
version: 16b2bf1b45ce3e3536c78ebec5116ea09a69786e
# END_PROMETHEUS_DEPS

- package: github.com/coreos/pkg
version: 4
subpackages:
- capnslog

# To avoid conflicting packages not resolving the latest GRPC
- package: google.golang.org/grpc
version: ~1.7.3
subpackages:
Expand Down
6 changes: 3 additions & 3 deletions src/cmd/services/m3coordinator/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ import (

// Configuration is the configuration for the coordinator.
type Configuration struct {
// DBClient is the DB client configuration.
DBClient *client.Configuration `yaml:"dbClient"`

// Metrics configuration.
Metrics instrument.MetricsConfiguration `yaml:"metrics"`

// ListenAddress is the server listen address.
ListenAddress string `yaml:"listenAddress" validate:"nonzero"`

// DBClient is the DB client configuration.
DBClient *client.Configuration `yaml:"dbClient"`

// RPC is the RPC configuration.
RPC *RPCConfiguration `yaml:"rpc"`

Expand Down
Loading