mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Response Ops][Task Manager] Increasing max bucket size for task delay and overdue by histograms (#167192)
## Summary With the serverless circuit breakers we're setting, we could see delays up to 64 minutes so we need to increase the max bucket allowed when capturing task run delays.
This commit is contained in:
parent
591df706da
commit
329e84508d
2 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ import {
|
|||
import { TaskManagerMetrics } from './task_metrics_collector';
|
||||
import { ITaskMetricsAggregator } from './types';
|
||||
|
||||
const HDR_HISTOGRAM_MAX = 1800; // 30 minutes
|
||||
const HDR_HISTOGRAM_MAX = 5400; // 90 minutes
|
||||
const HDR_HISTOGRAM_BUCKET_SIZE = 10; // 10 seconds
|
||||
|
||||
const OVERDUE_BY_KEY = 'overdue_by';
|
||||
|
|
|
@ -25,7 +25,7 @@ import {
|
|||
} from './lib';
|
||||
import { ITaskMetricsAggregator } from './types';
|
||||
|
||||
const HDR_HISTOGRAM_MAX = 1800; // 30 minutes
|
||||
const HDR_HISTOGRAM_MAX = 5400; // 90 minutes
|
||||
const HDR_HISTOGRAM_BUCKET_SIZE = 10; // 10 seconds
|
||||
|
||||
enum TaskRunKeys {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue