summaryrefslogtreecommitdiffstats
path: root/metrics-proxy/src
Commit message (Collapse)AuthorAgeFilesLines
* Unify on Streams.toList()Henning Baldersheim2023-01-175-11/+7
|
* Simplify and modernizeHenning Baldersheim2023-01-172-5/+3
|
* let prefixing with name happen after parsing entire objectArne Juul2023-01-061-4/+7
|
* Extend public dimension setOla Aunronning2023-01-041-11/+24
|
* Clean up test as implementation has changed to use a set.Henning Baldersheim2022-12-182-41/+53
|
* Use a set instead to detect uniqueness.Henning Baldersheim2022-12-161-5/+7
|
* Use hashing that will actually differentiate properlyHenning Baldersheim2022-12-161-5/+5
|
* Add unit test showing that we are not there yet.Henning Baldersheim2022-12-161-2/+14
|
* Rename MetricsParser.Consumer to Collector to avoid confusion.gjoranv2022-12-169-45/+42
|
* Fix a hashing bug in MetricsParser, and use record for Dimension.gjoranv2022-12-162-8/+42
| | | | | - XOR does not work well for comparing two distinct pairs of duplicate values.
* Add test of MetricsParser's dimensions hashing.gjoranv2022-12-161-0/+79
|
* Non-functional: rearrange functions, add comments and whitespace.gjoranv2022-12-161-35/+44
|
* Revert "Revert collect(Collectors.toList())"Henning Baldersheim2022-12-048-9/+9
|
* Revert collect(Collectors.toList())Henning Baldersheim2022-12-048-9/+9
|
* collect(Collectors.toList()) -> toList()Henning Baldersheim2022-12-028-9/+9
|
* Reduce the simple usage of guava where java has caught upHenning Baldersheim2022-11-306-45/+33
|
* Minor cleanupHenning Baldersheim2022-11-262-2/+1
|
* Use volatile instead of Atomics when that is sufficient.Henning Baldersheim2022-11-011-13/+10
|
* - Handle CancellationException.Henning Baldersheim2022-11-011-7/+15
| | | | | - Check stopped on every iteration. - Resort to Thread.interrupt() if nothing else helps, and log a warning.
* Remove unnecessary return typejonmv2022-10-283-13/+15
|
* Abandon in-flight metrics requests on deconstructjonmv2022-10-283-9/+8
|
* Break fetching metrics when stoppedjonmv2022-10-271-2/+3
|
* * apply new common bootstrapArne Juul2022-10-242-0/+6
| | | | | * remove now-duplicated code * prefer using ${VESPA_HOME} environment variable
* Support running Vespa in container as non-rootEirk Nygaard2022-10-211-1/+1
| | | | | | | | This removes the old VESPA_UNPRIVILEGED environment variable. Instead we use the old mechanisme if id of the user starting Vespa is root. If the container is started with a non-root user some sanity checking is done to either fail because wrong permissions are active, or warn the user for possibly too low limits.
* Add deploymentCluster dimensionOla Aunronning2022-10-201-0/+1
|
* Return X-Vespa-Ignored-Fields if fields were ignoredJon Bratseth2022-10-062-1/+2
|
* Require non-null consumer idgjoranv2022-09-271-2/+3
| | | | + remove redundant import
* Ignore case when looking up metrics consumer.gjoranv2022-09-263-6/+21
|
* Add Vespa consumer to host life metricOla Aunrønning2022-08-152-0/+6
|
* Add method to use Duration as timeout to make unit explicit, and avoid many ↵Henning Baldersheim2022-08-123-3/+7
| | | | magic conversions.
* qrserver -> container, part 2Harald Musum2022-08-095-9/+9
|
* qrserver -> containerHarald Musum2022-08-087-32/+28
|
* Re-enable testsBjørn Christian Seime2022-06-162-9/+1
|
* Use synchronous http clientBjørn Christian Seime2022-06-163-69/+53
|
* Temporarily ignore tests in RpcHealthMetricsTestBjørn Christian Seime2022-06-141-0/+3
|
* Temporarily ignore testsBjørn Christian Seime2022-06-141-0/+5
|
* Specify timeout for non-blocking I/O in http clientsBjørn Christian Seime2022-06-133-6/+13
|
* Specify global test timeoutBjørn Christian Seime2022-06-132-0/+11
|
* Stabilize metrics-proxy testsBjørn Christian Seime2022-06-102-11/+12
| | | | | Synchronize access to 'response' field. Handle null response. Ensure output stream is closed. Specify timeout for request connection from pool.
* Use '@Inject' from 'annotations' in multiple bundlesBjørn Christian Seime2022-05-0610-10/+10
|
* Increase timeout from 20s to 60s to allow overloaded nodes a chance to ↵Henning Baldersheim2022-05-052-2/+4
| | | | complete within timeout.
* Only log when failure is unexpected.Henning Baldersheim2022-04-301-1/+3
|
* Silence ConnectTimeoutExceptionHenning Baldersheim2022-04-291-1/+2
|
* Reduce default timeout for metrics requests from 300s to 25s to ensure it is ↵Henning Baldersheim2022-01-251-1/+0
| | | | shorter than shutdown timeout targeted to be 30s
* Support producing all clauses in a referenced conditionJon Bratseth2022-01-191-3/+3
|
* Increase timeout to reduce timing issue in test.Henning Baldersheim2022-01-071-2/+2
|
* Make parse method public to enable testing.Henning Baldersheim2021-12-191-1/+1
|
* GC unused loggerHenning Baldersheim2021-12-191-2/+0
|
* - Refactor and speedup MetricParser.handleValue.Henning Baldersheim2021-12-192-61/+66
| | | | | - Only use streaming jackson parsing - Aggregate hash codes to make unique dimension keys.
* Use the Instant as a timestamp to make it clear what it is instead of just a ↵Henning Baldersheim2021-12-187-26/+33
| | | | | | generic long. Make sure to use it correctly for the system metrics.