Skip to content

Commit

Permalink
change from type:gauge to type:top_n in inventory models
Browse files Browse the repository at this point in the history
  • Loading branch information
estermv committed Jan 26, 2021
1 parent 88f76b5 commit 2179dc7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const hostDockerOverview: TSVBMetricModelCreator = (
index_pattern: indexPattern,
interval,
time_field: timeField,
type: 'gauge',
type: 'top_n',
series: [
{
id: 'total',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const hostK8sOverview: TSVBMetricModelCreator = (
index_pattern: indexPattern,
interval,
time_field: timeField,
type: 'gauge',
type: 'top_n',
series: [
{
id: 'cpucap',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const hostSystemOverview: TSVBMetricModelCreator = (
index_pattern: indexPattern,
interval,
time_field: timeField,
type: 'gauge',
type: 'top_n',
series: [
{
id: 'cpu',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const awsOverview: TSVBMetricModelCreator = (timeField, indexPattern): TS
id_type: 'cloud',
interval: '>=5m',
time_field: timeField,
type: 'gauge',
type: 'top_n',
series: [
{
id: 'cpu-util',
Expand Down

0 comments on commit 2179dc7

Please sign in to comment.