alex-petrov-vt
4f03df8c55
Fix inconsistent display of word 'ago' on rules page ( #8566 )
...
* Fix inconsistent display of word 'ago' in last evaluation column on rules page
Signed-off-by: Alex Petrov <alex.petrov.vt@gmail.com>
* Extract adding word 'ago' to relativeDuration util function
Signed-off-by: Alex Petrov <alex.petrov.vt@gmail.com>
2021-03-08 19:10:09 +01:00
Simon Pasquier
c556ccb8dc
MAINTAINERS.md: remove myself from promtool maintainers
...
Unfortunately I don't have enough time to take care of promtool
currently.
Signed-off-by: Simon Pasquier <spasquie@redhat.com>
2021-03-08 15:04:51 +01:00
Julien Pivotto
5742a18590
Fix subqueries with default resolution in promql unit tests
...
Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
2021-03-07 09:20:04 +01:00
Julien Pivotto
8d2a8f4939
Merge pull request #8563 from ldhnam/update-contributing
...
Update master branch to main in CONTRIBUTING.md
2021-03-05 09:59:10 +01:00
ldhnam
45e9037467
Update master branch to main
...
Signed-off-by: Nam Le <namhoai95@gmail.com>
Signed-off-by: ldhnam <namhoai95@gmail.com>
2021-03-05 15:55:42 +07:00
Julien Pivotto
266e5e6c6c
Merge pull request #8544 from roidelapluie/move-to-go1.16
...
Upgrade to golang 1.16
2021-03-05 07:45:14 +01:00
Julien Pivotto
75e505babb
Upgrade to golang 1.16
...
Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
2021-03-05 00:59:25 +01:00
Ganesh Vernekar
e92bf2ebaa
Add codesome (tsdb, promql) and roidelapluie (promql) in CODEOWNERS file ( #8560 )
...
* Add codesome in CODEOWNERS file for tsdb and promql
Signed-off-by: Ganesh Vernekar <cs15btech11018@iith.ac.in>
* Add Julien to promql
Signed-off-by: Ganesh Vernekar <cs15btech11018@iith.ac.in>
2021-03-04 18:21:35 +05:30
Rémy Léone
6962e44618
Discovery docs: add a pull requests examples section ( #8556 )
...
* add a pull requests examples section
Signed-off-by: Rémy Léone <rleone@scaleway.com>
2021-03-04 10:11:08 +01:00
schou
65658091ed
moved details of feature to disabled features.md
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-03-03 21:42:17 -05:00
schou
946dba6a7f
small suggested changes
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-03-03 21:35:51 -05:00
Julien Pivotto
dd5a46aa47
Merge pull request #8523 from roidelapluie/edge-case-test-relabeling
...
Add hashmod relabeling test with hasmod and a newline
2021-03-03 22:09:08 +01:00
pschou
c15f15d6fd
revert disabled_features.md to previous wording.
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-03-02 22:01:02 -05:00
Julien Pivotto
22cfa10685
Add hashmod relabeling test with hasmod and a newline
...
Currently hashmod hashes all the labels, even if there is a newline. To
ensure it still works in the future, let's add a test.
Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
2021-03-02 23:01:22 +01:00
Julien Pivotto
77e648534e
Merge pull request #8553 from prometheus/brancz-codeowner
...
Add @brancz as CODEOWNER of kubernetes discovery
2021-03-02 10:21:23 +01:00
Frederic Branczyk
2f9af2c5a1
Add @brancz as CODEOWNER of kubernetes discovery
...
Signed-off-by: Frederic Branczyk <fbranczyk@gmail.com>
2021-03-02 09:47:38 +01:00
Julius Volz
0fef342816
Add initial CODEOWNERS GitHub config file ( #8552 )
...
* Add initial CODEOWNERS GitHub config file
See https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners
Signed-off-by: Julius Volz <julius.volz@gmail.com>
* Add Tom as a remote storage maintainer
Signed-off-by: Julius Volz <julius.volz@gmail.com>
2021-03-01 23:16:32 +01:00
Julien Pivotto
646556a263
Merge pull request #8546 from roidelapluie/follow-redirect
...
Support follow_redirect
2021-03-01 17:22:44 +01:00
jessicagreben
591e719dc1
fix failing blockwriter tests
...
Signed-off-by: jessicagreben <jessicagrebens@gmail.com>
2021-03-01 06:16:05 -08:00
jessicagreben
9fc53b7edf
fix appender.Add -> appender.Append
...
Signed-off-by: jessicagreben <jessicagrebens@gmail.com>
2021-03-01 05:49:49 -08:00
Julien Pivotto
93c6139bc1
Support follow_redirect
...
This PR introduces support for follow_redirect, to enable users to
disable following HTTP redirects.
Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
2021-02-26 22:50:56 +01:00
Julien Pivotto
9c4bc38c94
Merge pull request #8516 from Harkishen-Singh/headers-remote-read-on-round-tripper
...
Custom headers on remote-read and refactor implementation to roundtripper
2021-02-26 17:55:07 +01:00
Tom Wilkie
ce97cdd477
Move remote read handler to remote package. ( #8536 )
...
* Move remote read handler to remote package.
This follows the pattern I started with the remote write handler. The api/v1 package is getting pretty cluttered. Moving code to other packages helps reduce this size and also makes it reusable - eg Cortex doesn't do streaming remote writes yet, and will very soon.
Signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>
* Deal with a nil remoteReadHandler for tests.
Signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>
* Remove the global metrics.
Signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>
* Fix test.
Signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>
* Review feedback.
Signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>
2021-02-26 16:43:19 +00:00
Julien Pivotto
17688550d7
Merge pull request #8545 from prometheus/bwplotka-patch-1
...
Volunteering Myself & Chris for next releases.
2021-02-26 17:18:27 +01:00
Bartlomiej Plotka
8f748b2e24
Volunteering Myself & Chris for next releases.
2021-02-26 16:06:19 +00:00
Harkishen-Singh
79ba53a6c4
Custom headers on remote-read and refactor implementation to roundtripper.
...
Signed-off-by: Harkishen-Singh <harkishensingh@hotmail.com>
2021-02-26 17:20:29 +05:30
Arthur Silva Sens
537c0aff49
Prometheus and Promtool binaries now print help and usage to stdout ( #8542 )
...
Signed-off-by: ArthurSens <arthursens2005@gmail.com>
2021-02-25 19:52:34 +01:00
Julien Pivotto
0e24f246cc
Merge pull request #8540 from roidelapluie/fix-sync-repo
...
sync_repo_files: Normalize usage of git_user
2021-02-25 11:21:45 +01:00
Bartlomiej Plotka
8bf7bc68f1
Fixed TestChunkDiskMapper_WriteChunk_Chunk_IterateChunks for go1.16 ( #8538 )
...
Fixes https://github.com/prometheus/prometheus/issues/8403
Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com>
2021-02-25 14:38:12 +05:30
Julien Pivotto
c0173072e2
sync_repo_files: Normalize usage of git_user
...
Fix ./scripts/sync_repo_files.sh: line 141: GITHUB_USER: unbound variable
Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
2021-02-24 21:10:21 +01:00
Simon Pasquier
fe23360d0f
web/ui/react-app: update dependencies ( #8529 )
...
Fix lodash security issue.
Signed-off-by: Simon Pasquier <spasquie@redhat.com>
2021-02-24 21:01:28 +01:00
jessicagreben
78e84aed89
resolve merge conflict
...
Signed-off-by: jessicagreben <jessicagrebens@gmail.com>
2021-02-24 09:47:29 -08:00
jessicagreben
f2db9dc722
add multi rule integration tests
...
Signed-off-by: jessicagreben <jessicagrebens@gmail.com>
2021-02-24 09:42:31 -08:00
schou
3bafe17870
add negative offset to printer
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-02-23 21:16:28 -05:00
pschou
f80b52be69
Merge branch 'main' into dev_neg_offset
2021-02-23 20:52:57 -05:00
schou
efbf3af05d
reduce addOffst to 2 parameters
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-02-23 20:46:52 -05:00
schou
75d932a172
var init for bool
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-02-23 20:26:35 -05:00
schou
22bfc11738
aggregate booleans for ease of reading
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-02-23 20:26:35 -05:00
schou
71712183ac
minor wording updates
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-02-23 20:26:35 -05:00
schou
9621f6d549
wording for shift correctness
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-02-23 20:25:56 -05:00
schou
22cd48868a
adding feature flag, promql-negative-offset
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-02-23 20:25:56 -05:00
schou
851acf86ee
rebuild generated_parser.y.go
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-02-23 20:25:56 -05:00
schou
8aa9cc3978
add blob to basics documentation about negative shift
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-02-23 20:25:56 -05:00
schou
0c577c547b
add negative offset ability
...
Signed-off-by: schou <pschou@users.noreply.github.com>
2021-02-23 20:25:56 -05:00
Julien Pivotto
7bf76af6df
Merge pull request #8539 from roidelapluie/rename-to-main-df-branch
...
Fix default branch detection
2021-02-23 23:44:08 +01:00
Julien Pivotto
f9e2748f6f
Fix default branch detection
...
Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
2021-02-23 23:23:51 +01:00
Julien Pivotto
df80dc4d39
Merge pull request #8531 from roidelapluie/rename-to-main
...
Rename default branch to main
2021-02-23 20:35:19 +01:00
Julien Pivotto
13390c3995
Merge pull request #8537 from songjiayang/speed_delta
...
Speed delta without loop to calculate resultValue
2021-02-23 17:42:22 +01:00
songjiayang
776c2b8f42
Speed delta value without loop to calculate resultValue
...
Signed-off-by: songjiayang <songjiayang1@gmail.com>
2021-02-23 22:28:04 +08:00
Julien Pivotto
432d5ebc6c
Rename default branch to main
...
Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
2021-02-22 20:28:02 +01:00