Skip to content

Conversation

@romseygeek
Copy link
Contributor

@romseygeek romseygeek commented Oct 23, 2025

Disable points and terms indexes on dimension fields, and use doc_values
skippers instead. Dimension fields are part of the _tsid and so align
with the index sorts, meaning that doc_values skippers will work well for
querying and filtering, and have a much smaller disk footprint than full
indexes.

@romseygeek romseygeek self-assigned this Oct 23, 2025
@romseygeek romseygeek marked this pull request as draft October 23, 2025 13:26

this.dimension = TimeSeriesParams.dimensionParam(m -> toType(m).fieldType().isDimension()).addValidator(v -> {
if (v && (indexed.getValue() == false || hasDocValues.getValue() == false)) {
if (v && (hasDocValues.getValue() == false)) {
Copy link
Member

@felixbarny felixbarny Oct 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this change will need to be applied to all field mappers that can be dimensions:

BooleanFieldMapper
FlattenedFieldMapper
GeoPointFieldMapper
IpFieldMapper
NumberFieldMapper
UnsignedLongFieldMapper

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, and it will need gating behind a FeatureFlag and IndexVersion too. This is just for experimenting, really.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we at least also add IpFieldMapper? I think that will be important for the experimentation.

@felixbarny
Copy link
Member

felixbarny commented Oct 23, 2025

I ran this against the metricsgen track. The highlights:

  • Store size reduced by 18.51%
  • Ingest throughput increased by 20.55% (should be more pronounced when ingesting via the OTLP endpoint)
  • Cumulative merge time reduced by 34.70%
  • Cumulative refresh time reduced by 44.77%
  • Impact on query latency 0-20%. As expected, the biggest impact is seen on queries that filter for a specific set of hosts, for example.
Click to expand full rally comparison
|                                                                                                                    Metric |                                       Task |         Baseline |       Contender |              Diff |   Unit |    Diff % |
|--------------------------------------------------------------------------------------------------------------------------:|-------------------------------------------:|-----------------:|----------------:|------------------:|-------:|----------:|
|                                                                                Cumulative indexing time of primary shards |                                            |    348.269       |   310.975       |     -37.2948      |    min |   -10.71% |
|                                                                         Min cumulative indexing time across primary shard |                                            |    113.961       |   101.815       |     -12.1456      |    min |   -10.66% |
|                                                                      Median cumulative indexing time across primary shard |                                            |    116.486       |   103.979       |     -12.5067      |    min |   -10.74% |
|                                                                         Max cumulative indexing time across primary shard |                                            |    117.823       |   105.181       |     -12.6426      |    min |   -10.73% |
|                                                                       Cumulative indexing throttle time of primary shards |                                            |      0           |     0           |       0           |    min |     0.00% |
|                                                                Min cumulative indexing throttle time across primary shard |                                            |      0           |     0           |       0           |    min |     0.00% |
|                                                             Median cumulative indexing throttle time across primary shard |                                            |      0           |     0           |       0           |    min |     0.00% |
|                                                                Max cumulative indexing throttle time across primary shard |                                            |      0           |     0           |       0           |    min |     0.00% |
|                                                                                   Cumulative merge time of primary shards |                                            |     89.4657      |    58.4233      |     -31.0424      |    min |   -34.70% |
|                                                                                  Cumulative merge count of primary shards |                                            |     96           |    61           |     -35           |        |   -36.46% |
|                                                                            Min cumulative merge time across primary shard |                                            |     27.2882      |    19.0999      |      -8.18832     |    min |   -30.01% |
|                                                                         Median cumulative merge time across primary shard |                                            |     27.7449      |    19.1056      |      -8.63932     |    min |   -31.14% |
|                                                                            Max cumulative merge time across primary shard |                                            |     34.4327      |    20.2179      |     -14.2148      |    min |   -41.28% |
|                                                                          Cumulative merge throttle time of primary shards |                                            |      9.95505     |     4.1309      |      -5.82415     |    min |   -58.50% |
|                                                                   Min cumulative merge throttle time across primary shard |                                            |      2.54392     |     1.29497     |      -1.24895     |    min |   -49.10% |
|                                                                Median cumulative merge throttle time across primary shard |                                            |      2.61875     |     1.41272     |      -1.20603     |    min |   -46.05% |
|                                                                   Max cumulative merge throttle time across primary shard |                                            |      4.79238     |     1.42322     |      -3.36917     |    min |   -70.30% |
|                                                                                 Cumulative refresh time of primary shards |                                            |      2.254       |     1.2449      |      -1.0091      |    min |   -44.77% |
|                                                                                Cumulative refresh count of primary shards |                                            |    273           |   230           |     -43           |        |   -15.75% |
|                                                                          Min cumulative refresh time across primary shard |                                            |      0.7044      |     0.388       |      -0.3164      |    min |   -44.92% |
|                                                                       Median cumulative refresh time across primary shard |                                            |      0.7633      |     0.412383    |      -0.35092     |    min |   -45.97% |
|                                                                          Max cumulative refresh time across primary shard |                                            |      0.7863      |     0.444517    |      -0.34178     |    min |   -43.47% |
|                                                                                   Cumulative flush time of primary shards |                                            |      4.84823     |     0.780917    |      -4.06732     |    min |   -83.89% |
|                                                                                  Cumulative flush count of primary shards |                                            |     88           |    23           |     -65           |        |   -73.86% |
|                                                                            Min cumulative flush time across primary shard |                                            |      1.55692     |     0.13315     |      -1.42377     |    min |   -91.45% |
|                                                                         Median cumulative flush time across primary shard |                                            |      1.63477     |     0.2794      |      -1.35537     |    min |   -82.91% |
|                                                                            Max cumulative flush time across primary shard |                                            |      1.65655     |     0.368367    |      -1.28818     |    min |   -77.76% |
|                                                                                                   Total Young Gen GC time |                                            |    132.35        |   126.411       |      -5.939       |      s |    -4.49% |
|                                                                                                  Total Young Gen GC count |                                            |   4930           |  4340           |    -590           |        |   -11.97% |
|                                                                                                     Total Old Gen GC time |                                            |      0           |     0           |       0           |      s |     0.00% |
|                                                                                                    Total Old Gen GC count |                                            |      0           |     0           |       0           |        |     0.00% |
|                                                                                                              Dataset size |                                            |      3.58509     |     2.92149     |      -0.6636      |     GB |   -18.51% |
|                                                                                                                Store size |                                            |      3.58509     |     2.92149     |      -0.6636      |     GB |   -18.51% |
|                                                                                                             Translog size |                                            |      1.53668e-07 |     1.53668e-07 |       0           |     GB |     0.00% |
|                                                                                                    Heap used for segments |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                                  Heap used for doc values |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                                       Heap used for terms |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                                       Heap used for norms |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                                      Heap used for points |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                               Heap used for stored fields |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                                             Segment count |                                            |      3           |     3           |       0           |        |     0.00% |
|                                                                                               Total Ingest Pipeline count |                                            |      0           |     0           |       0           |        |     0.00% |
|                                                                                                Total Ingest Pipeline time |                                            |      0           |     0           |       0           |     ms |     0.00% |
|                                                                                              Total Ingest Pipeline failed |                                            |      0           |     0           |       0           |        |     0.00% |
|                           .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.status inverted index |                                            | 282053           |     0           | -282053           |  bytes |  -100.00% |
|                               .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.status doc values |                                            |     72.1211      |    72.376       |       0.25488     |     kB |    +0.35% |
|                                    .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.status total |                                            |    347.563       |    72.376       |    -275.188       |     kB |   -79.18% |
| .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.executable.name inverted index |                                            | 439193           |     0           | -439193           |  bytes |  -100.00% |
|     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.executable.name doc values |                                            |     67.6582      |    67.7432      |       0.08496     |     kB |    +0.13% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.executable.name total |                                            |    496.558       |    67.7432      |    -428.814       |     kB |   -86.36% |
|         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.command inverted index |                                            | 439199           |     0           | -439199           |  bytes |  -100.00% |
|             .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.command doc values |                                            |     67.6611      |    67.7461      |       0.08496     |     kB |    +0.13% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.command total |                                            |    496.566       |    67.7461      |    -428.82        |     kB |   -86.36% |
| .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.executable.path inverted index |                                            | 439199           |     0           | -439199           |  bytes |  -100.00% |
|     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.executable.path doc values |                                            |     67.6611      |    67.7461      |       0.08496     |     kB |    +0.13% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.executable.path total |                                            |    496.566       |    67.7461      |    -428.82        |     kB |   -86.36% |
|    .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.command_line inverted index |                                            | 439325           |     0           | -439325           |  bytes |  -100.00% |
|        .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.command_line doc values |                                            |     67.7842      |    67.8691      |       0.08496     |     kB |    +0.13% |
|             .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.command_line total |                                            |    496.812       |    67.8691      |    -428.943       |     kB |   -86.34% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.cpu.logical.count doc values |                                            |    501.776       |   501.776       |       0           |     kB |     0.00% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.cpu.logical.count total |                                            |    501.776       |   501.776       |       0           |     kB |     0.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.disk.pending_operations doc values |                                            |    503.887       |   503.887       |       0           |     kB |     0.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.disk.pending_operations total |                                            |    503.887       |   503.887       |       0           |     kB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.memory.virtual doc values |                                            |    507.407       |   507.407       |       0           |     kB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.memory.virtual total |                                            |    507.407       |   507.407       |       0           |     kB |     0.00% |
|                    .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.memory.usage doc values |                                            |    507.972       |   507.972       |       0           |     kB |     0.00% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.memory.usage total |                                            |    507.972       |   507.972       |       0           |     kB |     0.00% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.threads doc values |                                            |    509.581       |   509.581       |       0           |     kB |     0.00% |
|                              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.threads total |                                            |    509.581       |   509.581       |       0           |     kB |     0.00% |
|           .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.open_file_descriptors doc values |                                            |    511.227       |   511.227       |       0           |     kB |     0.00% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.open_file_descriptors total |                                            |    511.227       |   511.227       |       0           |     kB |     0.00% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.protocol inverted index |                                            | 479126           |     0           | -479126           |  bytes |  -100.00% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.protocol doc values |                                            |     61.3496      |    61.4346      |       0.08496     |     kB |    +0.14% |
|                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.protocol total |                                            |    529.246       |    61.4346      |    -467.812       |     kB |   -88.39% |
|                                           .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 _tsid doc values |                                            |    639.023       |   639.023       |       0           |     kB |     0.00% |
|                                                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 _tsid total |                                            |    639.023       |   639.023       |       0           |     kB |     0.00% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.mode inverted index |                                            | 599141           |     0           | -599141           |  bytes |  -100.00% |
|                                 .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.mode doc values |                                            |     65.8936      |    65.9785      |       0.08496     |     kB |    +0.13% |
|                                      .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.mode total |                                            |    650.992       |    65.9785      |    -585.014       |     kB |   -89.86% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.type inverted index |                                            | 599147           |     0           | -599147           |  bytes |  -100.00% |
|                                 .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.type doc values |                                            |     65.8994      |    65.9844      |       0.08496     |     kB |    +0.13% |
|                                      .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.type total |                                            |    651.004       |    65.9844      |    -585.02        |     kB |   -89.86% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.processes.created doc values |                                            |    702.492       |   702.492       |       0           |     kB |     0.00% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.processes.created total |                                            |    702.492       |   702.492       |       0           |     kB |     0.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.parent_pid doc values |                                            |    203.568       |   203.568       |       0           |     kB |     0.00% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.parent_pid points |                                            |    667.662       |   667.662       |       0           |     kB |     0.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.parent_pid total |                                            |    871.23        |   871.23        |       0           |     kB |     0.00% |
|                 .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.pid doc values |                                            |    339.569       |   339.569       |       0           |     kB |     0.00% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.pid points |                                            |    667.662       |   667.662       |       0           |     kB |     0.00% |
|                      .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.process.pid total |                                            |   1007.23        |  1007.23        |       0           |     kB |     0.00% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.disk.io doc values |                                            |      1.30337     |     1.30337     |       0           |     MB |     0.00% |
|                               .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.disk.io total |                                            |      1.30337     |     1.30337     |       0           |     MB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.disk.operations doc values |                                            |      1.30896     |     1.30896     |       0           |     MB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.disk.operations total |                                            |      1.30896     |     1.30896     |       0           |     MB |     0.00% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.disk.io doc values |                                            |      1.32152     |     1.32152     |       0           |     MB |     0.00% |
|                              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.disk.io total |                                            |      1.32152     |     1.32152     |       0           |     MB |     0.00% |
|                 .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.disk.operations doc values |                                            |      1.32185     |     1.32185     |       0           |     MB |     0.00% |
|                      .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.disk.operations total |                                            |      1.32185     |     1.32185     |       0           |     MB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.processes.count doc values |                                            |      1.32661     |     1.32661     |       0           |     MB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.processes.count total |                                            |      1.32661     |     1.32661     |       0           |     MB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.mountpoint inverted index |                                            |      1.23209e+06 |     0           |      -1.23209e+06 |  bytes |  -100.00% |
|                           .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.mountpoint doc values |                                            |    328.198       |   328.708       |       0.50977     |     kB |    +0.16% |
|                                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.mountpoint total |                                            |   1531.42        |   328.708       |   -1202.71        |     kB |   -78.54% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.memory.usage doc values |                                            |      2.65692     |     2.65692     |       0           |     MB |     0.00% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.memory.usage total |                                            |      2.65692     |     2.65692     |       0           |     MB |     0.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.filesystem.inodes.usage doc values |                                            |      2.66647     |     2.66647     |       0           |     MB |     0.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.filesystem.inodes.usage total |                                            |      2.66647     |     2.66647     |       0           |     MB |     0.00% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 data_stream.dataset doc values |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 data_stream.dataset total |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                           .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 data_stream.namespace doc values |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 data_stream.namespace total |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 data_stream.type doc values |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                                     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 data_stream.type total |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                        .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.direction inverted index |                                            |      3.20908e+06 |     0           |      -3.20908e+06 |  bytes |  -100.00% |
|                            .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.direction doc values |                                            |    719.438       |   722.654       |       3.2168      |     kB |    +0.45% |
|                                 .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.direction total |                                            |   3853.3         |   722.654       |   -3130.65        |     kB |   -81.25% |
|                 .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.filesystem.usage doc values |                                            |      3.96893     |     3.96893     |       0           |     MB |     0.00% |
|                      .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.filesystem.usage total |                                            |      3.96893     |     3.96893     |       0           |     MB |     0.00% |
|                              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.cpu inverted index |                                            |      3.8685e+06  |     0           |      -3.8685e+06  |  bytes |  -100.00% |
|                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.cpu doc values |                                            |    696.259       |   697.19        |       0.93164     |     kB |    +0.13% |
|                                       .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.cpu total |                                            |   4474.09        |   697.19        |   -3776.9         |     kB |   -84.42% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.network.io doc values |                                            |      5.07874     |     5.07874     |       0           |     MB |     0.00% |
|                            .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.network.io total |                                            |      5.07874     |     5.07874     |       0           |     MB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.network.dropped doc values |                                            |      5.09654     |     5.09654     |       0           |     MB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.network.dropped total |                                            |      5.09654     |     5.09654     |       0           |     MB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.network.packets doc values |                                            |      5.09686     |     5.09686     |       0           |     MB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.network.packets total |                                            |      5.09686     |     5.09686     |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.network.errors doc values |                                            |      5.09724     |     5.09724     |       0           |     MB |     0.00% |
|                        .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.network.errors total |                                            |      5.09724     |     5.09724     |       0           |     MB |     0.00% |
|                           .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.device inverted index |                                            |      4.47597e+06 |     0           |      -4.47597e+06 |  bytes |  -100.00% |
|                               .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.device doc values |                                            |    935.647       |   937.171       |       1.52344     |     kB |    +0.16% |
|                                    .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.device total |                                            |   5306.71        |   937.171       |   -4369.54        |     kB |   -82.34% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.network.connections doc values |                                            |      5.26719     |     5.26719     |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.network.connections total |                                            |      5.26719     |     5.26719     |       0           |     MB |     0.00% |
|                                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 _ts_routing_hash doc values |                                            |      5.35067     |     5.35067     |       0           |     MB |     0.00% |
|                                     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 _ts_routing_hash total |                                            |      5.35067     |     5.35067     |       0           |     MB |     0.00% |
|      .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.cache.l2.size doc values |                                            |      1.54495     |     1.54495     |       0           |     MB |     0.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.cache.l2.size points |                                            |      7.57459     |     7.57459     |       0           |     MB |     0.00% |
|           .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.cache.l2.size total |                                            |      9.11955     |     9.11955     |       0           |     MB |     0.00% |
|         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.family inverted index |                                            |      1.00262e+07 |     0           |      -1.00262e+07 |  bytes |  -100.00% |
|             .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.family doc values |                                            |      3           |    90           |      87           |  bytes | +2900.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.family total |                                            |      1.00262e+07 |    90           |      -1.00262e+07 |  bytes |  -100.00% |
|     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.model.name inverted index |                                            |      1.00262e+07 |     0           |      -1.00262e+07 |  bytes |  -100.00% |
|         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.model.name doc values |                                            |      3           |    90           |      87           |  bytes | +2900.00% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.model.name total |                                            |      1.00262e+07 |    90           |      -1.00262e+07 |  bytes |  -100.00% |
|       .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.stepping inverted index |                                            |      1.00262e+07 |     0           |      -1.00262e+07 |  bytes |  -100.00% |
|           .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.stepping doc values |                                            |      6           |    93           |      87           |  bytes | +1450.00% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.stepping total |                                            |      1.00262e+07 |    93           |      -1.00262e+07 |  bytes |  -100.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.arch inverted index |                                            |      1.00263e+07 |     0           |      -1.00263e+07 |  bytes |  -100.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.arch doc values |                                            |     18           |   105           |      87           |  bytes |  +483.33% |
|                        .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.arch total |                                            |      1.00263e+07 |   105           |      -1.00262e+07 |  bytes |  -100.00% |
|       .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.model.id inverted index |                                            |      1.00263e+07 |     0           |      -1.00263e+07 |  bytes |  -100.00% |
|           .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.model.id doc values |                                            |     18           |   105           |      87           |  bytes |  +483.33% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.model.id total |                                            |      1.00263e+07 |   105           |      -1.00262e+07 |  bytes |  -100.00% |
|      .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.vendor.id inverted index |                                            |      1.00263e+07 |     0           |      -1.00263e+07 |  bytes |  -100.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.vendor.id doc values |                                            |     18           |   105           |      87           |  bytes |  +483.33% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.cpu.vendor.id total |                                            |      1.00263e+07 |   105           |      -1.00262e+07 |  bytes |  -100.00% |
|                 .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.os.type inverted index |                                            |      1.00263e+07 |     0           |      -1.00263e+07 |  bytes |  -100.00% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.os.type doc values |                                            |     18           |   105           |      87           |  bytes |  +483.33% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.os.type total |                                            |      1.00263e+07 |   105           |      -1.00262e+07 |  bytes |  -100.00% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.schema_url inverted index |                                            |      9.56188     |     9.56187     |      -1e-05       |     MB |    -0.00% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.schema_url doc values |                                            |    117           |   117           |       0           |  bytes |     0.00% |
|                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.schema_url total |                                            |      9.56199     |     9.56198     |      -1e-05       |     MB |    -0.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.os.description inverted index |                                            |      1.00265e+07 |     0           |      -1.00265e+07 |  bytes |  -100.00% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.os.description doc values |                                            |    273           |   360           |      87           |  bytes |   +31.87% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.os.description total |                                            |      1.00268e+07 |   360           |      -1.00264e+07 |  bytes |  -100.00% |
|                            .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.state inverted index |                                            |      8.53043e+06 |     0           |      -8.53043e+06 |  bytes |  -100.00% |
|                                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.state doc values |                                            |      1.82151     |     1.85684     |       0.03534     |     MB |    +1.94% |
|                                     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 attributes.state total |                                            |      9.95676     |     1.85684     |      -8.09992     |     MB |   -81.35% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.cpu.load_average.5m doc values |                                            |     11.0148      |    11.0148      |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.cpu.load_average.5m total |                                            |     11.0148      |    11.0148      |       0           |     MB |     0.00% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.disk.io_time doc values |                                            |     11.0173      |    11.0173      |       0           |     MB |     0.00% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.disk.io_time total |                                            |     11.0173      |    11.0173      |       0           |     MB |     0.00% |
|             .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.cpu.load_average.15m doc values |                                            |     11.0179      |    11.0179      |       0           |     MB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.cpu.load_average.15m total |                                            |     11.0179      |    11.0179      |       0           |     MB |     0.00% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.cpu.load_average.1m doc values |                                            |     11.0197      |    11.0197      |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.cpu.load_average.1m total |                                            |     11.0197      |    11.0197      |       0           |     MB |     0.00% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.memory.utilization doc values |                                            |     11.2137      |    11.2137      |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.memory.utilization total |                                            |     11.2137      |    11.2137      |       0           |     MB |     0.00% |
|                               .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 scope.version inverted index |                                            |      9.94257     |     9.94257     |       0           |     MB |     0.00% |
|                                   .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 scope.version doc values |                                            |      1.81071     |     1.81071     |       0           |     MB |     0.00% |
|                                        .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 scope.version total |                                            |     11.7533      |    11.7533      |       0           |     MB |     0.00% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 _metric_names_hash inverted index |                                            |      1.3139e+07  |     0           |      -1.3139e+07  |  bytes |  -100.00% |
|                              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 _metric_names_hash doc values |                                            |    751.071       |   753.441       |       2.37012     |     kB |    +0.32% |
|                                   .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 _metric_names_hash total |                                            |  13582.1         |   753.441       |  -12828.7         |     kB |   -94.45% |
|                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 scope.name inverted index |                                            |      1.25237e+07 |     0           |      -1.25237e+07 |  bytes |  -100.00% |
|                                      .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 scope.name doc values |                                            |      1.8737      |     1.87494     |       0.00124     |     MB |    +0.07% |
|                                           .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 scope.name total |                                            |     13.8172      |     1.87494     |     -11.9423      |     MB |   -86.43% |
|                                        .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 unit inverted index |                                            |      1.31542e+07 |     0           |      -1.31542e+07 |  bytes |  -100.00% |
|                                            .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 unit doc values |                                            |      1.96721     |     1.96944     |       0.00223     |     MB |    +0.11% |
|                                                 .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 unit total |                                            |     14.512       |     1.96944     |     -12.5426      |     MB |   -86.43% |
|                                 .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 start_timestamp doc values |                                            |     10.8147      |    10.8147      |       0           |     MB |     0.00% |
|                                     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 start_timestamp points |                                            |      7.57459     |     7.57459     |       0           |     MB |     0.00% |
|                                      .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 start_timestamp total |                                            |     18.3893      |    18.3893      |       0           |     MB |     0.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.name inverted index |                                            |      1.56712e+07 |     0           |      -1.56712e+07 |  bytes |  -100.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.name doc values |                                            |      4.44692     |     4.84916     |       0.40224     |     MB |    +9.05% |
|                        .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.name total |                                            |     19.3921      |     4.84916     |     -14.5429      |     MB |   -74.99% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.disk.operation_time doc values |                                            |     21.9816      |    21.9816      |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.disk.operation_time total |                                            |     21.9816      |    21.9816      |       0           |     MB |     0.00% |
|                        .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.cpu.time doc values |                                            |     32.9526      |    32.9526      |       0           |     MB |     0.00% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.process.cpu.time total |                                            |     32.9526      |    32.9526      |       0           |     MB |     0.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.memory.utilization doc values |                                            |     65.8417      |    65.8417      |       0           |     MB |     0.00% |
|                    .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.memory.utilization total |                                            |     65.8417      |    65.8417      |       0           |     MB |     0.00% |
|                                      .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 @timestamp doc values |                                            |     95.405       |    95.405       |       0           |     MB |     0.00% |
|                                           .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 @timestamp total |                                            |     95.405       |    95.405       |       0           |     MB |     0.00% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.mac inverted index |                                            |      9.44503e+07 |     0           |      -9.44503e+07 |  bytes |  -100.00% |
|                    .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.mac doc values |                                            |    128.782       |   130.374       |       1.5928      |     MB |    +1.24% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.mac total |                                            |    218.857       |   130.374       |     -88.4821      |     MB |   -40.43% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.cpu.time doc values |                                            |    438.675       |   438.675       |       0           |     MB |     0.00% |
|                              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 metrics.system.cpu.time total |                                            |    438.675       |   438.675       |       0           |     MB |     0.00% |
|                                         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 _seq_no doc values |                                            |    551.604       |   547.437       |      -4.16651     |     MB |    -0.76% |
|                                              .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 _seq_no total |                                            |    551.604       |   547.437       |      -4.16651     |     MB |    -0.76% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.ip doc values |                                            |    496.802       |   498.394       |       1.5928      |     MB |    +0.32% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.ip points |                                            |      4.25299e+08 |     0           |      -4.25299e+08 |  bytes |  -100.00% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 resource.attributes.host.ip total |                                            |    902.399       |   498.394       |    -404.004       |     MB |   -44.77% |
|                                         .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 _id inverted index |                                            |    919.122       |   919.122       |       0           |     MB |     0.00% |
|                                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.10.23-000001 _id total |                                            |    919.122       |   919.122       |       0           |     MB |     0.00% |
|                                                                                                            Min Throughput |                                      index |  64594.9         | 78064.5         |   13469.6         | docs/s |   +20.85% |
|                                                                                                           Mean Throughput |                                      index |  65638           | 79126.8         |   13488.8         | docs/s |   +20.55% |
|                                                                                                         Median Throughput |                                      index |  65569.4         | 79124.3         |   13555           | docs/s |   +20.67% |
|                                                                                                            Max Throughput |                                      index |  69519.2         | 80238.7         |   10719.6         | docs/s |   +15.42% |
|                                                                                                   50th percentile latency |                                      index |    449.449       |   406.852       |     -42.5973      |     ms |    -9.48% |
|                                                                                                   90th percentile latency |                                      index |    688.44        |   568.422       |    -120.018       |     ms |   -17.43% |
|                                                                                                   99th percentile latency |                                      index |   4905.6         |  3003.81        |   -1901.79        |     ms |   -38.77% |
|                                                                                                 99.9th percentile latency |                                      index |   7389.81        |  5578.74        |   -1811.07        |     ms |   -24.51% |
|                                                                                                99.99th percentile latency |                                      index |  11379.5         |  7376.61        |   -4002.9         |     ms |   -35.18% |
|                                                                                                  100th percentile latency |                                      index |  14209.3         |  9824.95        |   -4384.38        |     ms |   -30.86% |
|                                                                                              50th percentile service time |                                      index |    449.591       |   406.365       |     -43.2253      |     ms |    -9.61% |
|                                                                                              90th percentile service time |                                      index |    701.029       |   569.301       |    -131.728       |     ms |   -18.79% |
|                                                                                              99th percentile service time |                                      index |   4913.92        |  2972.46        |   -1941.46        |     ms |   -39.51% |
|                                                                                            99.9th percentile service time |                                      index |   7398.43        |  5600.46        |   -1797.97        |     ms |   -24.30% |
|                                                                                           99.99th percentile service time |                                      index |  11379.5         |  7376.61        |   -4002.9         |     ms |   -35.18% |
|                                                                                             100th percentile service time |                                      index |  14209.3         |  9824.95        |   -4384.38        |     ms |   -30.86% |
|                                                                                                                error rate |                                      index |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |                avg_avgot_memory_by_host_1h |      8.65748     |    12.1321      |       3.47466     |  ops/s |   +40.13% |
|                                                                                                           Mean Throughput |                avg_avgot_memory_by_host_1h |     13.7943      |    14.6632      |       0.86891     |  ops/s |    +6.30% |
|                                                                                                         Median Throughput |                avg_avgot_memory_by_host_1h |     14.3267      |    14.943       |       0.61628     |  ops/s |    +4.30% |
|                                                                                                            Max Throughput |                avg_avgot_memory_by_host_1h |     15.5971      |    15.5115      |      -0.0856      |  ops/s |    -0.55% |
|                                                                                                   50th percentile latency |                avg_avgot_memory_by_host_1h |     57.1113      |    61.1565      |       4.04524     |     ms |    +7.08% |
|                                                                                                   90th percentile latency |                avg_avgot_memory_by_host_1h |     62.5122      |    64.7026      |       2.19047     |     ms |    +3.50% |
|                                                                                                   99th percentile latency |                avg_avgot_memory_by_host_1h |     84.3541      |    68.8739      |     -15.4802      |     ms |   -18.35% |
|                                                                                                 99.9th percentile latency |                avg_avgot_memory_by_host_1h |     93.2046      |    75.4073      |     -17.7974      |     ms |   -19.09% |
|                                                                                                  100th percentile latency |                avg_avgot_memory_by_host_1h |    143.753       |    81.3521      |     -62.4006      |     ms |   -43.41% |
|                                                                                              50th percentile service time |                avg_avgot_memory_by_host_1h |     57.1156      |    61.1589      |       4.04333     |     ms |    +7.08% |
|                                                                                              90th percentile service time |                avg_avgot_memory_by_host_1h |     62.5226      |    64.7113      |       2.18876     |     ms |    +3.50% |
|                                                                                              99th percentile service time |                avg_avgot_memory_by_host_1h |     84.3728      |    68.8838      |     -15.489       |     ms |   -18.36% |
|                                                                                            99.9th percentile service time |                avg_avgot_memory_by_host_1h |     93.2046      |    75.4073      |     -17.7974      |     ms |   -19.09% |
|                                                                                             100th percentile service time |                avg_avgot_memory_by_host_1h |    143.753       |    81.3521      |     -62.4006      |     ms |   -43.41% |
|                                                                                                                error rate |                avg_avgot_memory_by_host_1h |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |                    avg_rate_cpu_by_host_1h |      1.607       |     1.47396     |      -0.13304     |  ops/s |    -8.28% |
|                                                                                                           Mean Throughput |                    avg_rate_cpu_by_host_1h |      1.74319     |     1.57166     |      -0.17153     |  ops/s |    -9.84% |
|                                                                                                         Median Throughput |                    avg_rate_cpu_by_host_1h |      1.7599      |     1.58146     |      -0.17844     |  ops/s |   -10.14% |
|                                                                                                            Max Throughput |                    avg_rate_cpu_by_host_1h |      1.78143     |     1.60105     |      -0.18038     |  ops/s |   -10.13% |
|                                                                                                   50th percentile latency |                    avg_rate_cpu_by_host_1h |    545.742       |   613.115       |      67.3731      |     ms |   +12.35% |
|                                                                                                   90th percentile latency |                    avg_rate_cpu_by_host_1h |    585.516       |   648.46        |      62.9438      |     ms |   +10.75% |
|                                                                                                   99th percentile latency |                    avg_rate_cpu_by_host_1h |    612.033       |   676.487       |      64.4538      |     ms |   +10.53% |
|                                                                                                  100th percentile latency |                    avg_rate_cpu_by_host_1h |    626.191       |   701.034       |      74.8429      |     ms |   +11.95% |
|                                                                                              50th percentile service time |                    avg_rate_cpu_by_host_1h |    545.742       |   613.115       |      67.3731      |     ms |   +12.35% |
|                                                                                              90th percentile service time |                    avg_rate_cpu_by_host_1h |    585.516       |   648.46        |      62.9438      |     ms |   +10.75% |
|                                                                                              99th percentile service time |                    avg_rate_cpu_by_host_1h |    612.033       |   676.487       |      64.4538      |     ms |   +10.53% |
|                                                                                             100th percentile service time |                    avg_rate_cpu_by_host_1h |    626.191       |   701.034       |      74.8429      |     ms |   +11.95% |
|                                                                                                                error rate |                    avg_rate_cpu_by_host_1h |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |                avg_avgot_memory_by_host_1m |      4.96097     |     4.36143     |      -0.59955     |  ops/s |   -12.09% |
|                                                                                                           Mean Throughput |                avg_avgot_memory_by_host_1m |      5.16703     |     4.44755     |      -0.71948     |  ops/s |   -13.92% |
|                                                                                                         Median Throughput |                avg_avgot_memory_by_host_1m |      5.19132     |     4.44999     |      -0.74133     |  ops/s |   -14.28% |
|                                                                                                            Max Throughput |                avg_avgot_memory_by_host_1m |      5.22961     |     4.49635     |      -0.73326     |  ops/s |   -14.02% |
|                                                                                                   50th percentile latency |                avg_avgot_memory_by_host_1m |    188.528       |   218.535       |      30.0074      |     ms |   +15.92% |
|                                                                                                   90th percentile latency |                avg_avgot_memory_by_host_1m |    192.42        |   232.661       |      40.2407      |     ms |   +20.91% |
|                                                                                                   99th percentile latency |                avg_avgot_memory_by_host_1m |    198.891       |   244.382       |      45.4901      |     ms |   +22.87% |
|                                                                                                  100th percentile latency |                avg_avgot_memory_by_host_1m |    241.827       |   263.924       |      22.0964      |     ms |    +9.14% |
|                                                                                              50th percentile service time |                avg_avgot_memory_by_host_1m |    188.528       |   218.535       |      30.0074      |     ms |   +15.92% |
|                                                                                              90th percentile service time |                avg_avgot_memory_by_host_1m |    192.42        |   232.661       |      40.2407      |     ms |   +20.91% |
|                                                                                              99th percentile service time |                avg_avgot_memory_by_host_1m |    198.891       |   244.382       |      45.4901      |     ms |   +22.87% |
|                                                                                             100th percentile service time |                avg_avgot_memory_by_host_1m |    241.827       |   263.924       |      22.0964      |     ms |    +9.14% |
|                                                                                                                error rate |                avg_avgot_memory_by_host_1m |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |                    avg_rate_cpu_by_host_1m |      0.277752    |     0.274326    |      -0.00343     |  ops/s |    -1.23% |
|                                                                                                           Mean Throughput |                    avg_rate_cpu_by_host_1m |      0.278822    |     0.277946    |      -0.00088     |  ops/s |    -0.31% |
|                                                                                                         Median Throughput |                    avg_rate_cpu_by_host_1m |      0.278879    |     0.278313    |      -0.00057     |  ops/s |    -0.20% |
|                                                                                                            Max Throughput |                    avg_rate_cpu_by_host_1m |      0.279223    |     0.278819    |      -0.0004      |  ops/s |    -0.14% |
|                                                                                                   50th percentile latency |                    avg_rate_cpu_by_host_1m |   3573.39        |  3575.19        |       1.79614     |     ms |    +0.05% |
|                                                                                                   90th percentile latency |                    avg_rate_cpu_by_host_1m |   3605.86        |  3610.93        |       5.06956     |     ms |    +0.14% |
|                                                                                                  100th percentile latency |                    avg_rate_cpu_by_host_1m |   3636.36        |  3626.95        |      -9.40991     |     ms |    -0.26% |
|                                                                                              50th percentile service time |                    avg_rate_cpu_by_host_1m |   3573.39        |  3575.19        |       1.79614     |     ms |    +0.05% |
|                                                                                              90th percentile service time |                    avg_rate_cpu_by_host_1m |   3605.86        |  3610.93        |       5.06956     |     ms |    +0.14% |
|                                                                                             100th percentile service time |                    avg_rate_cpu_by_host_1m |   3636.36        |  3626.95        |      -9.40991     |     ms |    -0.26% |
|                                                                                                                error rate |                    avg_rate_cpu_by_host_1m |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |    106.186       |    92.2683      |     -13.9181      |  ops/s |   -13.11% |
|                                                                                                           Mean Throughput | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |    112.766       |    95.3146      |     -17.451       |  ops/s |   -15.48% |
|                                                                                                         Median Throughput | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |    113.384       |    95.4661      |     -17.9181      |  ops/s |   -15.80% |
|                                                                                                            Max Throughput | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |    115.212       |    97.9082      |     -17.3033      |  ops/s |   -15.02% |
|                                                                                                   50th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |      7.96005     |     9.53068     |       1.57062     |     ms |   +19.73% |
|                                                                                                   90th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |      8.24853     |    10.4564      |       2.20784     |     ms |   +26.77% |
|                                                                                                   99th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     11.383       |    12.7205      |       1.33757     |     ms |   +11.75% |
|                                                                                                 99.9th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     28.6722      |    31.6895      |       3.01727     |     ms |   +10.52% |
|                                                                                                99.99th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     34.1065      |    42.985       |       8.8785      |     ms |   +26.03% |
|                                                                                                  100th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     40.6031      |    96.9706      |      56.3675      |     ms |  +138.83% |
|                                                                                              50th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |      7.96106     |     9.53084     |       1.56977     |     ms |   +19.72% |
|                                                                                              90th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |      8.24841     |    10.4557      |       2.20732     |     ms |   +26.76% |
|                                                                                              99th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     11.0354      |    12.2693      |       1.23385     |     ms |   +11.18% |
|                                                                                            99.9th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     28.3041      |    31.4437      |       3.13965     |     ms |   +11.09% |
|                                                                                           99.99th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     34.1065      |    42.985       |       8.8785      |     ms |   +26.03% |
|                                                                                             100th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     40.6031      |    96.9706      |      56.3675      |     ms |  +138.83% |
|                                                                                                                error rate | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     19.9166      |    16.9486      |      -2.96795     |  ops/s |   -14.90% |
|                                                                                                           Mean Throughput |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     21.7823      |    17.4016      |      -4.38069     |  ops/s |   -20.11% |
|                                                                                                         Median Throughput |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     21.9835      |    17.4569      |      -4.52662     |  ops/s |   -20.59% |
|                                                                                                            Max Throughput |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     22.349       |    17.5596      |      -4.78938     |  ops/s |   -21.43% |
|                                                                                                   50th percentile latency |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     43.191       |    55.671       |      12.48        |     ms |   +28.89% |
|                                                                                                   90th percentile latency |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     45.4172      |    58.275       |      12.8578      |     ms |   +28.31% |
|                                                                                                   99th percentile latency |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     48.3212      |    61.92        |      13.5988      |     ms |   +28.14% |
|                                                                                                 99.9th percentile latency |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     50.0389      |    82.2649      |      32.226       |     ms |   +64.40% |
|                                                                                                  100th percentile latency |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     50.8054      |    91.6899      |      40.8845      |     ms |   +80.47% |
|                                                                                              50th percentile service time |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     43.192       |    55.6689      |      12.477       |     ms |   +28.89% |
|                                                                                              90th percentile service time |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     45.4039      |    58.2701      |      12.8662      |     ms |   +28.34% |
|                                                                                              99th percentile service time |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     48.3399      |    61.9306      |      13.5907      |     ms |   +28.11% |
|                                                                                            99.9th percentile service time |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     50.0389      |    82.2649      |      32.226       |     ms |   +64.40% |
|                                                                                             100th percentile service time |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     50.8054      |    91.6899      |      40.8845      |     ms |   +80.47% |
|                                                                                                                error rate |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |      sum_rate_sys_cpu_time_large_clause_5m |      0.180514    |     0.188035    |       0.00752     |  ops/s |    +4.17% |
|                                                                                                           Mean Throughput |      sum_rate_sys_cpu_time_large_clause_5m |      0.187528    |     0.205424    |       0.0179      |  ops/s |    +9.54% |
|                                                                                                         Median Throughput |      sum_rate_sys_cpu_time_large_clause_5m |      0.18854     |     0.207657    |       0.01912     |  ops/s |   +10.14% |
|                                                                                                            Max Throughput |      sum_rate_sys_cpu_time_large_clause_5m |      0.189867    |     0.211108    |       0.02124     |  ops/s |   +11.19% |
|                                                                                                   50th percentile latency |      sum_rate_sys_cpu_time_large_clause_5m |   5156.84        |  4586.03        |    -570.813       |     ms |   -11.07% |
|                                                                                                   90th percentile latency |      sum_rate_sys_cpu_time_large_clause_5m |   5204.76        |  4651.77        |    -552.989       |     ms |   -10.62% |
|                                                                                                  100th percentile latency |      sum_rate_sys_cpu_time_large_clause_5m |   5234.7         |  4690           |    -544.703       |     ms |   -10.41% |
|                                                                                              50th percentile service time |      sum_rate_sys_cpu_time_large_clause_5m |   5156.84        |  4586.03        |    -570.813       |     ms |   -11.07% |
|                                                                                              90th percentile service time |      sum_rate_sys_cpu_time_large_clause_5m |   5204.76        |  4651.77        |    -552.989       |     ms |   -10.62% |
|                                                                                             100th percentile service time |      sum_rate_sys_cpu_time_large_clause_5m |   5234.7         |  4690           |    -544.703       |     ms |   -10.41% |
|                                                                                                                error rate |      sum_rate_sys_cpu_time_large_clause_5m |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |              sum_lot_filesystem_usage_top5 |     15.3948      |    12.6893      |      -2.70554     |  ops/s |   -17.57% |
|                                                                                                           Mean Throughput |              sum_lot_filesystem_usage_top5 |     16.2367      |    13.5184      |      -2.71827     |  ops/s |   -16.74% |
|                                                                                                         Median Throughput |              sum_lot_filesystem_usage_top5 |     16.3375      |    13.6122      |      -2.7253      |  ops/s |   -16.68% |
|                                                                                                            Max Throughput |              sum_lot_filesystem_usage_top5 |     16.4756      |    13.758       |      -2.71764     |  ops/s |   -16.49% |
|                                                                                                   50th percentile latency |              sum_lot_filesystem_usage_top5 |     57.3326      |    69.447       |      12.1144      |     ms |   +21.13% |
|                                                                                                   90th percentile latency |              sum_lot_filesystem_usage_top5 |     69.3777      |    79.9172      |      10.5395      |     ms |   +15.19% |
|                                                                                                   99th percentile latency |              sum_lot_filesystem_usage_top5 |     72.8638      |    83.7886      |      10.9248      |     ms |   +14.99% |
|                                                                                                 99.9th percentile latency |              sum_lot_filesystem_usage_top5 |     75.7118      |    85.5959      |       9.88407     |     ms |   +13.05% |
|                                                                                                  100th percentile latency |              sum_lot_filesystem_usage_top5 |     77.402       |    86.171       |       8.76896     |     ms |   +11.33% |
|                                                                                              50th percentile service time |              sum_lot_filesystem_usage_top5 |     57.346       |    69.5866      |      12.2406      |     ms |   +21.35% |
|                                                                                              90th percentile service time |              sum_lot_filesystem_usage_top5 |     69.3806      |    79.9215      |      10.5409      |     ms |   +15.19% |
|                                                                                              99th percentile service time |              sum_lot_filesystem_usage_top5 |     72.8654      |    83.7663      |      10.9009      |     ms |   +14.96% |
|                                                                                            99.9th percentile service time |              sum_lot_filesystem_usage_top5 |     75.7118      |    85.5959      |       9.88407     |     ms |   +13.05% |
|                                                                                             100th percentile service time |              sum_lot_filesystem_usage_top5 |     77.402       |    86.171       |       8.76896     |     ms |   +11.33% |
|                                                                                                                error rate |              sum_lot_filesystem_usage_top5 |      0           |     0           |       0           |      % |     0.00% |

@felixbarny
Copy link
Member

I've extracted flame graphs for two queries that have regressed the most:

avg_avgot_cpu_load_1m_filtered_by_hosts_5m-main.html
avg_avgot_cpu_load_1m_filtered_by_hosts_5m-skippers.html

avg_avgot_cpu_load_1m_prefix_by_hosts_5m-main.html
avg_avgot_cpu_load_1m_prefix_by_hosts_5m-skippers.html

What both have in common that they're using a two phase iterator in the skippers version. The prefix_by_hosts query is also doing a lot of UTF-8 to UTF-16 conversions that it didn't do before.

@felixbarny
Copy link
Member

felixbarny commented Nov 4, 2025

Overview of the 50th percentile latency of this PR before and after #137536 has been merged:

                                            | before    | after     |
                avg_avgot_memory_by_host_1h |    +7.08% |   +29.60% |
                    avg_rate_cpu_by_host_1h |   +12.35% |    +8.12% |
 avg_avgot_cpu_load_1m_filtered_by_hosts_5m |   +19.73% |    -5.68% |
   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |   +28.89% |    +2.21% |
      sum_rate_sys_cpu_time_large_clause_5m |   -11.07% |    +0.73% |
              sum_lot_filesystem_usage_top5 |   +21.13% |   +13.80% |
                avg_avgot_memory_by_host_1m |   +15.92% |    +2.24% |
                    avg_rate_cpu_by_host_1m |    +0.05% |   -10.27% |
  • The change in Use DV rewrites where possible in Keyword queries #137536 seemed to have helped. The prefix query performance (avg_avgot_cpu_load_1m_prefix_by_hosts_5m) is in line with main.
  • The avg_avgot_memory_by_host_1h query has regressed, which is unexpected. We should look into that.

After investigating avg_avgot_memory_by_host_1h, I think we should be fine proceeding with the change and guarding it behind a feature flag. We can then observe how it behaves over time.

Another thing to discuss is how we want users to control whether to use skippers for dimensions. The easiest thing to do is to just use the existing setting index.mapping.use_doc_values_skipper. It defaults to true and can be set to false to disable skippers for both the timestamp and dimensions on a specific index. This setting is currently behind a feature flag. Seems like we can remove that feature flag once we've fixed the timestamp sorting regression and don't see other regressions.

@felixbarny
Copy link
Member

I extracted flame graphs for the avg_avgot_memory_by_host_1h query that has regressed and highlighted the sections with the biggest difference.

@romseygeek do you see any quick wins here?

avg_avgot_memory_by_host_1h-main.html

Screenshot 2025-11-04 at 16 07 15

avg_avgot_memory_by_host_1h-skippers.html

Screenshot 2025-11-04 at 16 09 20

@felixbarny
Copy link
Member

Posting the full Rally comparison for completeness:

Click to expand ...
------------------------------------------------------
    _______             __   _____
   / ____(_)___  ____ _/ /  / ___/_________  ________
  / /_  / / __ \/ __ `/ /   \__ \/ ___/ __ \/ ___/ _ \
 / __/ / / / / / /_/ / /   ___/ / /__/ /_/ / /  /  __/
/_/   /_/_/ /_/\__,_/_/   /____/\___/\____/_/   \___/
------------------------------------------------------
            
|                                                                                                                    Metric |                                       Task |         Baseline |       Contender |              Diff |   Unit |    Diff % |
|--------------------------------------------------------------------------------------------------------------------------:|-------------------------------------------:|-----------------:|----------------:|------------------:|-------:|----------:|
|                                                                                Cumulative indexing time of primary shards |                                            |    355.895       |   339.951       |     -15.9441      |    min |    -4.48% |
|                                                                         Min cumulative indexing time across primary shard |                                            |    116.38        |   111.065       |      -5.31572     |    min |    -4.57% |
|                                                                      Median cumulative indexing time across primary shard |                                            |    118.056       |   113.546       |      -4.51057     |    min |    -3.82% |
|                                                                         Max cumulative indexing time across primary shard |                                            |    121.459       |   115.341       |      -6.11783     |    min |    -5.04% |
|                                                                       Cumulative indexing throttle time of primary shards |                                            |      0           |     0           |       0           |    min |     0.00% |
|                                                                Min cumulative indexing throttle time across primary shard |                                            |      0           |     0           |       0           |    min |     0.00% |
|                                                             Median cumulative indexing throttle time across primary shard |                                            |      0           |     0           |       0           |    min |     0.00% |
|                                                                Max cumulative indexing throttle time across primary shard |                                            |      0           |     0           |       0           |    min |     0.00% |
|                                                                                   Cumulative merge time of primary shards |                                            |     81.8743      |    64.8861      |     -16.9882      |    min |   -20.75% |
|                                                                                  Cumulative merge count of primary shards |                                            |     95           |    64           |     -31           |        |   -32.63% |
|                                                                            Min cumulative merge time across primary shard |                                            |     26.4277      |    19.3149      |      -7.11277     |    min |   -26.91% |
|                                                                         Median cumulative merge time across primary shard |                                            |     26.8062      |    22.6298      |      -4.17638     |    min |   -15.58% |
|                                                                            Max cumulative merge time across primary shard |                                            |     28.6404      |    22.9414      |      -5.699       |    min |   -19.90% |
|                                                                          Cumulative merge throttle time of primary shards |                                            |      7.64505     |     3.47895     |      -4.1661      |    min |   -54.49% |
|                                                                   Min cumulative merge throttle time across primary shard |                                            |      2.38577     |     1.12782     |      -1.25795     |    min |   -52.73% |
|                                                                Median cumulative merge throttle time across primary shard |                                            |      2.53752     |     1.1692      |      -1.36832     |    min |   -53.92% |
|                                                                   Max cumulative merge throttle time across primary shard |                                            |      2.72177     |     1.18193     |      -1.53983     |    min |   -56.57% |
|                                                                                 Cumulative refresh time of primary shards |                                            |      2.46345     |     1.49485     |      -0.9686      |    min |   -39.32% |
|                                                                                Cumulative refresh count of primary shards |                                            |    284           |   237           |     -47           |        |   -16.55% |
|                                                                          Min cumulative refresh time across primary shard |                                            |      0.815467    |     0.48215     |      -0.33332     |    min |   -40.87% |
|                                                                       Median cumulative refresh time across primary shard |                                            |      0.81925     |     0.484617    |      -0.33463     |    min |   -40.85% |
|                                                                          Max cumulative refresh time across primary shard |                                            |      0.828733    |     0.528083    |      -0.30065     |    min |   -36.28% |
|                                                                                   Cumulative flush time of primary shards |                                            |      5.2194      |     2.17327     |      -3.04613     |    min |   -58.36% |
|                                                                                  Cumulative flush count of primary shards |                                            |     97           |    37           |     -60           |        |   -61.86% |
|                                                                            Min cumulative flush time across primary shard |                                            |      1.6602      |     0.597117    |      -1.06308     |    min |   -64.03% |
|                                                                         Median cumulative flush time across primary shard |                                            |      1.758       |     0.773433    |      -0.98457     |    min |   -56.00% |
|                                                                            Max cumulative flush time across primary shard |                                            |      1.8012      |     0.802717    |      -0.99848     |    min |   -55.43% |
|                                                                                                   Total Young Gen GC time |                                            |    136.165       |   126.684       |      -9.481       |      s |    -6.96% |
|                                                                                                  Total Young Gen GC count |                                            |   5010           |  4133           |    -877           |        |   -17.50% |
|                                                                                                     Total Old Gen GC time |                                            |      0           |     0           |       0           |      s |     0.00% |
|                                                                                                    Total Old Gen GC count |                                            |      0           |     0           |       0           |        |     0.00% |
|                                                                                                              Dataset size |                                            |      3.5904      |     2.91327     |      -0.67713     |     GB |   -18.86% |
|                                                                                                                Store size |                                            |      3.5904      |     2.91327     |      -0.67713     |     GB |   -18.86% |
|                                                                                                             Translog size |                                            |      1.53668e-07 |     1.53668e-07 |       0           |     GB |     0.00% |
|                                                                                                    Heap used for segments |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                                  Heap used for doc values |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                                       Heap used for terms |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                                       Heap used for norms |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                                      Heap used for points |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                               Heap used for stored fields |                                            |      0           |     0           |       0           |     MB |     0.00% |
|                                                                                                             Segment count |                                            |      3           |     3           |       0           |        |     0.00% |
|                                                                                               Total Ingest Pipeline count |                                            |      0           |     0           |       0           |        |     0.00% |
|                                                                                                Total Ingest Pipeline time |                                            |      0           |     0           |       0           |     ms |     0.00% |
|                                                                                              Total Ingest Pipeline failed |                                            |      0           |     0           |       0           |        |     0.00% |
|                           .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.status inverted index |                                            | 282053           |     0           | -282053           |  bytes |  -100.00% |
|                               .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.status doc values |                                            |     72.1211      |    72.376       |       0.25488     |     kB |    +0.35% |
|                                    .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.status total |                                            |    347.563       |    72.376       |    -275.188       |     kB |   -79.18% |
| .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.executable.name inverted index |                                            | 439193           |     0           | -439193           |  bytes |  -100.00% |
|     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.executable.name doc values |                                            |     67.6582      |    67.7432      |       0.08496     |     kB |    +0.13% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.executable.name total |                                            |    496.558       |    67.7432      |    -428.814       |     kB |   -86.36% |
|         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.command inverted index |                                            | 439199           |     0           | -439199           |  bytes |  -100.00% |
|             .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.command doc values |                                            |     67.6611      |    67.7461      |       0.08496     |     kB |    +0.13% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.command total |                                            |    496.566       |    67.7461      |    -428.82        |     kB |   -86.36% |
| .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.executable.path inverted index |                                            | 439199           |     0           | -439199           |  bytes |  -100.00% |
|     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.executable.path doc values |                                            |     67.6611      |    67.7461      |       0.08496     |     kB |    +0.13% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.executable.path total |                                            |    496.566       |    67.7461      |    -428.82        |     kB |   -86.36% |
|    .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.command_line inverted index |                                            | 439325           |     0           | -439325           |  bytes |  -100.00% |
|        .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.command_line doc values |                                            |     67.7842      |    67.8691      |       0.08496     |     kB |    +0.13% |
|             .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.command_line total |                                            |    496.812       |    67.8691      |    -428.943       |     kB |   -86.34% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.cpu.logical.count doc values |                                            |    501.776       |   501.776       |       0           |     kB |     0.00% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.cpu.logical.count total |                                            |    501.776       |   501.776       |       0           |     kB |     0.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.disk.pending_operations doc values |                                            |    503.887       |   503.887       |       0           |     kB |     0.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.disk.pending_operations total |                                            |    503.887       |   503.887       |       0           |     kB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.memory.virtual doc values |                                            |    507.407       |   507.407       |       0           |     kB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.memory.virtual total |                                            |    507.407       |   507.407       |       0           |     kB |     0.00% |
|                    .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.memory.usage doc values |                                            |    507.972       |   507.972       |       0           |     kB |     0.00% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.memory.usage total |                                            |    507.972       |   507.972       |       0           |     kB |     0.00% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.threads doc values |                                            |    509.581       |   509.581       |       0           |     kB |     0.00% |
|                              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.threads total |                                            |    509.581       |   509.581       |       0           |     kB |     0.00% |
|           .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.open_file_descriptors doc values |                                            |    511.227       |   511.227       |       0           |     kB |     0.00% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.open_file_descriptors total |                                            |    511.227       |   511.227       |       0           |     kB |     0.00% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.protocol inverted index |                                            | 479126           |     0           | -479126           |  bytes |  -100.00% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.protocol doc values |                                            |     61.3496      |    61.4346      |       0.08496     |     kB |    +0.14% |
|                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.protocol total |                                            |    529.246       |    61.4346      |    -467.812       |     kB |   -88.39% |
|                                           .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 _tsid doc values |                                            |    639.023       |   639.023       |       0           |     kB |     0.00% |
|                                                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 _tsid total |                                            |    639.023       |   639.023       |       0           |     kB |     0.00% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.mode inverted index |                                            | 599141           |     0           | -599141           |  bytes |  -100.00% |
|                                 .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.mode doc values |                                            |     65.8936      |    65.9785      |       0.08496     |     kB |    +0.13% |
|                                      .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.mode total |                                            |    650.992       |    65.9785      |    -585.014       |     kB |   -89.86% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.type inverted index |                                            | 599147           |     0           | -599147           |  bytes |  -100.00% |
|                                 .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.type doc values |                                            |     65.8994      |    65.9844      |       0.08496     |     kB |    +0.13% |
|                                      .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.type total |                                            |    651.004       |    65.9844      |    -585.02        |     kB |   -89.86% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.processes.created doc values |                                            |    702.492       |   702.492       |       0           |     kB |     0.00% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.processes.created total |                                            |    702.492       |   702.492       |       0           |     kB |     0.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.parent_pid doc values |                                            |    203.568       |   203.568       |       0           |     kB |     0.00% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.parent_pid points |                                            |    667.662       |   667.662       |       0           |     kB |     0.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.parent_pid total |                                            |    871.23        |   871.23        |       0           |     kB |     0.00% |
|                 .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.pid doc values |                                            |    339.569       |   339.569       |       0           |     kB |     0.00% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.pid points |                                            |    667.662       |   667.662       |       0           |     kB |     0.00% |
|                      .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.process.pid total |                                            |   1007.23        |  1007.23        |       0           |     kB |     0.00% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.disk.io doc values |                                            |      1.30337     |     1.30337     |       0           |     MB |     0.00% |
|                               .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.disk.io total |                                            |      1.30337     |     1.30337     |       0           |     MB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.disk.operations doc values |                                            |      1.30896     |     1.30896     |       0           |     MB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.disk.operations total |                                            |      1.30896     |     1.30896     |       0           |     MB |     0.00% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.disk.io doc values |                                            |      1.32152     |     1.32152     |       0           |     MB |     0.00% |
|                              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.disk.io total |                                            |      1.32152     |     1.32152     |       0           |     MB |     0.00% |
|                 .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.disk.operations doc values |                                            |      1.32185     |     1.32185     |       0           |     MB |     0.00% |
|                      .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.disk.operations total |                                            |      1.32185     |     1.32185     |       0           |     MB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.processes.count doc values |                                            |      1.32661     |     1.32661     |       0           |     MB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.processes.count total |                                            |      1.32661     |     1.32661     |       0           |     MB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.mountpoint inverted index |                                            |      1.23209e+06 |     0           |      -1.23209e+06 |  bytes |  -100.00% |
|                           .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.mountpoint doc values |                                            |    328.198       |   328.708       |       0.50977     |     kB |    +0.16% |
|                                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.mountpoint total |                                            |   1531.42        |   328.708       |   -1202.71        |     kB |   -78.54% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.memory.usage doc values |                                            |      2.65692     |     2.65692     |       0           |     MB |     0.00% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.memory.usage total |                                            |      2.65692     |     2.65692     |       0           |     MB |     0.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.filesystem.inodes.usage doc values |                                            |      2.66647     |     2.66647     |       0           |     MB |     0.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.filesystem.inodes.usage total |                                            |      2.66647     |     2.66647     |       0           |     MB |     0.00% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 data_stream.dataset doc values |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 data_stream.dataset total |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                           .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 data_stream.namespace doc values |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 data_stream.namespace total |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 data_stream.type doc values |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                                     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 data_stream.type total |                                            |      3.08995     |     3.08995     |       0           |     MB |     0.00% |
|                        .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.direction inverted index |                                            |      3.20908e+06 |     0           |      -3.20908e+06 |  bytes |  -100.00% |
|                            .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.direction doc values |                                            |    719.438       |   722.654       |       3.2168      |     kB |    +0.45% |
|                                 .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.direction total |                                            |   3853.3         |   722.654       |   -3130.65        |     kB |   -81.25% |
|                 .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.filesystem.usage doc values |                                            |      3.96893     |     3.96893     |       0           |     MB |     0.00% |
|                      .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.filesystem.usage total |                                            |      3.96893     |     3.96893     |       0           |     MB |     0.00% |
|                              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.cpu inverted index |                                            |      3.8685e+06  |     0           |      -3.8685e+06  |  bytes |  -100.00% |
|                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.cpu doc values |                                            |    696.259       |   697.19        |       0.93164     |     kB |    +0.13% |
|                                       .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.cpu total |                                            |   4474.09        |   697.19        |   -3776.9         |     kB |   -84.42% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.network.io doc values |                                            |      5.07874     |     5.07874     |       0           |     MB |     0.00% |
|                            .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.network.io total |                                            |      5.07874     |     5.07874     |       0           |     MB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.network.dropped doc values |                                            |      5.09654     |     5.09654     |       0           |     MB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.network.dropped total |                                            |      5.09654     |     5.09654     |       0           |     MB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.network.packets doc values |                                            |      5.09686     |     5.09686     |       0           |     MB |     0.00% |
|                       .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.network.packets total |                                            |      5.09686     |     5.09686     |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.network.errors doc values |                                            |      5.09724     |     5.09724     |       0           |     MB |     0.00% |
|                        .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.network.errors total |                                            |      5.09724     |     5.09724     |       0           |     MB |     0.00% |
|                           .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.device inverted index |                                            |      4.47597e+06 |     0           |      -4.47597e+06 |  bytes |  -100.00% |
|                               .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.device doc values |                                            |    935.647       |   937.171       |       1.52344     |     kB |    +0.16% |
|                                    .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.device total |                                            |   5306.71        |   937.171       |   -4369.54        |     kB |   -82.34% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.network.connections doc values |                                            |      5.26719     |     5.26719     |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.network.connections total |                                            |      5.26719     |     5.26719     |       0           |     MB |     0.00% |
|                                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 _ts_routing_hash doc values |                                            |      5.35067     |     5.35067     |       0           |     MB |     0.00% |
|                                     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 _ts_routing_hash total |                                            |      5.35067     |     5.35067     |       0           |     MB |     0.00% |
|      .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.cache.l2.size doc values |                                            |      1.54495     |     1.54495     |       0           |     MB |     0.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.cache.l2.size points |                                            |      7.57459     |     7.57459     |       0           |     MB |     0.00% |
|           .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.cache.l2.size total |                                            |      9.11955     |     9.11955     |       0           |     MB |     0.00% |
|         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.family inverted index |                                            |      1.00262e+07 |     0           |      -1.00262e+07 |  bytes |  -100.00% |
|             .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.family doc values |                                            |      3           |    90           |      87           |  bytes | +2900.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.family total |                                            |      1.00262e+07 |    90           |      -1.00262e+07 |  bytes |  -100.00% |
|     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.model.name inverted index |                                            |      1.00262e+07 |     0           |      -1.00262e+07 |  bytes |  -100.00% |
|         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.model.name doc values |                                            |      3           |    90           |      87           |  bytes | +2900.00% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.model.name total |                                            |      1.00262e+07 |    90           |      -1.00262e+07 |  bytes |  -100.00% |
|       .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.stepping inverted index |                                            |      1.00262e+07 |     0           |      -1.00262e+07 |  bytes |  -100.00% |
|           .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.stepping doc values |                                            |      6           |    93           |      87           |  bytes | +1450.00% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.stepping total |                                            |      1.00262e+07 |    93           |      -1.00262e+07 |  bytes |  -100.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.arch inverted index |                                            |      1.00263e+07 |     0           |      -1.00263e+07 |  bytes |  -100.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.arch doc values |                                            |     18           |   105           |      87           |  bytes |  +483.33% |
|                        .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.arch total |                                            |      1.00263e+07 |   105           |      -1.00262e+07 |  bytes |  -100.00% |
|       .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.model.id inverted index |                                            |      1.00263e+07 |     0           |      -1.00263e+07 |  bytes |  -100.00% |
|           .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.model.id doc values |                                            |     18           |   105           |      87           |  bytes |  +483.33% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.model.id total |                                            |      1.00263e+07 |   105           |      -1.00262e+07 |  bytes |  -100.00% |
|      .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.vendor.id inverted index |                                            |      1.00263e+07 |     0           |      -1.00263e+07 |  bytes |  -100.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.vendor.id doc values |                                            |     18           |   105           |      87           |  bytes |  +483.33% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.cpu.vendor.id total |                                            |      1.00263e+07 |   105           |      -1.00262e+07 |  bytes |  -100.00% |
|                 .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.os.type inverted index |                                            |      1.00263e+07 |     0           |      -1.00263e+07 |  bytes |  -100.00% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.os.type doc values |                                            |     18           |   105           |      87           |  bytes |  +483.33% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.os.type total |                                            |      1.00263e+07 |   105           |      -1.00262e+07 |  bytes |  -100.00% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.schema_url inverted index |                                            |      9.56188     |     9.56187     |      -1e-05       |     MB |    -0.00% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.schema_url doc values |                                            |    117           |   117           |       0           |  bytes |     0.00% |
|                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.schema_url total |                                            |      9.56199     |     9.56198     |      -1e-05       |     MB |    -0.00% |
|          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.os.description inverted index |                                            |      1.00265e+07 |     0           |      -1.00265e+07 |  bytes |  -100.00% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.os.description doc values |                                            |    273           |   360           |      87           |  bytes |   +31.87% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.os.description total |                                            |      1.00268e+07 |   360           |      -1.00264e+07 |  bytes |  -100.00% |
|                            .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.state inverted index |                                            |      8.53043e+06 |     0           |      -8.53043e+06 |  bytes |  -100.00% |
|                                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.state doc values |                                            |      1.82151     |     1.85684     |       0.03534     |     MB |    +1.94% |
|                                     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 attributes.state total |                                            |      9.95676     |     1.85684     |      -8.09992     |     MB |   -81.35% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.cpu.load_average.5m doc values |                                            |     11.0148      |    11.0148      |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.cpu.load_average.5m total |                                            |     11.0148      |    11.0148      |       0           |     MB |     0.00% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.disk.io_time doc values |                                            |     11.0173      |    11.0173      |       0           |     MB |     0.00% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.disk.io_time total |                                            |     11.0173      |    11.0173      |       0           |     MB |     0.00% |
|             .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.cpu.load_average.15m doc values |                                            |     11.0179      |    11.0179      |       0           |     MB |     0.00% |
|                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.cpu.load_average.15m total |                                            |     11.0179      |    11.0179      |       0           |     MB |     0.00% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.cpu.load_average.1m doc values |                                            |     11.0197      |    11.0197      |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.cpu.load_average.1m total |                                            |     11.0197      |    11.0197      |       0           |     MB |     0.00% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.memory.utilization doc values |                                            |     11.2137      |    11.2137      |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.memory.utilization total |                                            |     11.2137      |    11.2137      |       0           |     MB |     0.00% |
|                               .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 scope.version inverted index |                                            |      9.94257     |     9.94257     |       0           |     MB |     0.00% |
|                                   .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 scope.version doc values |                                            |      1.81071     |     1.81071     |       0           |     MB |     0.00% |
|                                        .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 scope.version total |                                            |     11.7533      |    11.7533      |       0           |     MB |     0.00% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 _metric_names_hash inverted index |                                            |      1.3139e+07  |     0           |      -1.3139e+07  |  bytes |  -100.00% |
|                              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 _metric_names_hash doc values |                                            |    751.071       |   753.441       |       2.37012     |     kB |    +0.32% |
|                                   .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 _metric_names_hash total |                                            |  13582.1         |   753.441       |  -12828.7         |     kB |   -94.45% |
|                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 scope.name inverted index |                                            |      1.25237e+07 |     0           |      -1.25237e+07 |  bytes |  -100.00% |
|                                      .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 scope.name doc values |                                            |      1.8737      |     1.87494     |       0.00124     |     MB |    +0.07% |
|                                           .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 scope.name total |                                            |     13.8172      |     1.87494     |     -11.9423      |     MB |   -86.43% |
|                                        .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 unit inverted index |                                            |      1.31542e+07 |     0           |      -1.31542e+07 |  bytes |  -100.00% |
|                                            .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 unit doc values |                                            |      1.96721     |     1.96944     |       0.00223     |     MB |    +0.11% |
|                                                 .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 unit total |                                            |     14.512       |     1.96944     |     -12.5426      |     MB |   -86.43% |
|                                 .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 start_timestamp doc values |                                            |     10.8147      |    10.8147      |       0           |     MB |     0.00% |
|                                     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 start_timestamp points |                                            |      7.57459     |     7.57459     |       0           |     MB |     0.00% |
|                                      .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 start_timestamp total |                                            |     18.3893      |    18.3893      |       0           |     MB |     0.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.name inverted index |                                            |      1.56712e+07 |     0           |      -1.56712e+07 |  bytes |  -100.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.name doc values |                                            |      4.44692     |     4.84916     |       0.40224     |     MB |    +9.05% |
|                        .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.name total |                                            |     19.3921      |     4.84916     |     -14.5429      |     MB |   -74.99% |
|              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.disk.operation_time doc values |                                            |     21.9816      |    21.9816      |       0           |     MB |     0.00% |
|                   .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.disk.operation_time total |                                            |     21.9816      |    21.9816      |       0           |     MB |     0.00% |
|                        .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.cpu.time doc values |                                            |     32.9526      |    32.9526      |       0           |     MB |     0.00% |
|                             .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.process.cpu.time total |                                            |     32.9526      |    32.9526      |       0           |     MB |     0.00% |
|               .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.memory.utilization doc values |                                            |     65.8417      |    65.8417      |       0           |     MB |     0.00% |
|                    .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.memory.utilization total |                                            |     65.8417      |    65.8417      |       0           |     MB |     0.00% |
|                                      .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 @timestamp doc values |                                            |     95.405       |    95.405       |       0           |     MB |     0.00% |
|                                           .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 @timestamp total |                                            |     95.405       |    95.405       |       0           |     MB |     0.00% |
|                .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.mac inverted index |                                            |      9.44503e+07 |     0           |      -9.44503e+07 |  bytes |  -100.00% |
|                    .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.mac doc values |                                            |    128.782       |   130.374       |       1.5928      |     MB |    +1.24% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.mac total |                                            |    218.857       |   130.374       |     -88.4821      |     MB |   -40.43% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.cpu.time doc values |                                            |    438.675       |   438.675       |       0           |     MB |     0.00% |
|                              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 metrics.system.cpu.time total |                                            |    438.675       |   438.675       |       0           |     MB |     0.00% |
|                                         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 _seq_no doc values |                                            |    557.385       |   539.591       |     -17.7941      |     MB |    -3.19% |
|                                              .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 _seq_no total |                                            |    557.385       |   539.591       |     -17.7941      |     MB |    -3.19% |
|                     .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.ip doc values |                                            |    496.802       |   498.394       |       1.5928      |     MB |    +0.32% |
|                         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.ip points |                                            |      4.25299e+08 |     0           |      -4.25299e+08 |  bytes |  -100.00% |
|                          .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 resource.attributes.host.ip total |                                            |    902.399       |   498.394       |    -404.004       |     MB |   -44.77% |
|                                         .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 _id inverted index |                                            |    919.122       |   919.122       |       0           |     MB |     0.00% |
|                                                  .ds-metrics-hostmetricsreceiver.otel-default-2025.11.04-000001 _id total |                                            |    919.122       |   919.122       |       0           |     MB |     0.00% |
|                                                                                                            Min Throughput |                                      index |  64853.3         | 71956.4         |    7103.09        | docs/s |   +10.95% |
|                                                                                                           Mean Throughput |                                      index |  65534.5         | 74628.3         |    9093.78        | docs/s |   +13.88% |
|                                                                                                         Median Throughput |                                      index |  65399.6         | 75151           |    9751.33        | docs/s |   +14.91% |
|                                                                                                            Max Throughput |                                      index |  67777.6         | 75989.8         |    8212.17        | docs/s |   +12.12% |
|                                                                                                   50th percentile latency |                                      index |    449.119       |   441.92        |      -7.19887     |     ms |    -1.60% |
|                                                                                                   90th percentile latency |                                      index |    635.872       |   598.623       |     -37.2484      |     ms |    -5.86% |
|                                                                                                   99th percentile latency |                                      index |   5359.45        |  2942.89        |   -2416.55        |     ms |   -45.09% |
|                                                                                                 99.9th percentile latency |                                      index |   7796.76        |  5131.44        |   -2665.32        |     ms |   -34.18% |
|                                                                                                99.99th percentile latency |                                      index |   9140.13        |  6542.39        |   -2597.74        |     ms |   -28.42% |
|                                                                                                  100th percentile latency |                                      index |  10643.6         |  7189.75        |   -3453.81        |     ms |   -32.45% |
|                                                                                              50th percentile service time |                                      index |    448.314       |   441.935       |      -6.37948     |     ms |    -1.42% |
|                                                                                              90th percentile service time |                                      index |    636.937       |   597.592       |     -39.3447      |     ms |    -6.18% |
|                                                                                              99th percentile service time |                                      index |   5370.85        |  2919.72        |   -2451.12        |     ms |   -45.64% |
|                                                                                            99.9th percentile service time |                                      index |   7806.67        |  5126.49        |   -2680.17        |     ms |   -34.33% |
|                                                                                           99.99th percentile service time |                                      index |   9140.13        |  6542.39        |   -2597.74        |     ms |   -28.42% |
|                                                                                             100th percentile service time |                                      index |  10643.6         |  7189.75        |   -3453.81        |     ms |   -32.45% |
|                                                                                                                error rate |                                      index |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |                avg_avgot_memory_by_host_1h |     14.3271      |    10.0158      |      -4.31129     |  ops/s |   -30.09% |
|                                                                                                           Mean Throughput |                avg_avgot_memory_by_host_1h |     17.8574      |    13.4722      |      -4.38523     |  ops/s |   -24.56% |
|                                                                                                         Median Throughput |                avg_avgot_memory_by_host_1h |     18.2559      |    13.879       |      -4.37696     |  ops/s |   -23.98% |
|                                                                                                            Max Throughput |                avg_avgot_memory_by_host_1h |     19.1919      |    14.6512      |      -4.54071     |  ops/s |   -23.66% |
|                                                                                                   50th percentile latency |                avg_avgot_memory_by_host_1h |     48.5606      |    62.9328      |      14.3722      |     ms |   +29.60% |
|                                                                                                   90th percentile latency |                avg_avgot_memory_by_host_1h |     51.9928      |    69.1542      |      17.1614      |     ms |   +33.01% |
|                                                                                                   99th percentile latency |                avg_avgot_memory_by_host_1h |     71.1407      |    75.1091      |       3.96837     |     ms |    +5.58% |
|                                                                                                 99.9th percentile latency |                avg_avgot_memory_by_host_1h |     85.0226      |    99.4217      |      14.3991      |     ms |   +16.94% |
|                                                                                                  100th percentile latency |                avg_avgot_memory_by_host_1h |     90.0579      |   103.557       |      13.4988      |     ms |   +14.99% |
|                                                                                              50th percentile service time |                avg_avgot_memory_by_host_1h |     48.5601      |    62.9503      |      14.3902      |     ms |   +29.63% |
|                                                                                              90th percentile service time |                avg_avgot_memory_by_host_1h |     51.9555      |    69.148       |      17.1926      |     ms |   +33.09% |
|                                                                                              99th percentile service time |                avg_avgot_memory_by_host_1h |     70.7734      |    75.1106      |       4.33724     |     ms |    +6.13% |
|                                                                                            99.9th percentile service time |                avg_avgot_memory_by_host_1h |     85.0226      |    99.4217      |      14.3991      |     ms |   +16.94% |
|                                                                                             100th percentile service time |                avg_avgot_memory_by_host_1h |     90.0579      |   103.557       |      13.4988      |     ms |   +14.99% |
|                                                                                                                error rate |                avg_avgot_memory_by_host_1h |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |                    avg_rate_cpu_by_host_1h |      1.68071     |     1.45618     |      -0.22453     |  ops/s |   -13.36% |
|                                                                                                           Mean Throughput |                    avg_rate_cpu_by_host_1h |      1.77215     |     1.59688     |      -0.17527     |  ops/s |    -9.89% |
|                                                                                                         Median Throughput |                    avg_rate_cpu_by_host_1h |      1.78265     |     1.61205     |      -0.1706      |  ops/s |    -9.57% |
|                                                                                                            Max Throughput |                    avg_rate_cpu_by_host_1h |      1.79577     |     1.63939     |      -0.15638     |  ops/s |    -8.71% |
|                                                                                                   50th percentile latency |                    avg_rate_cpu_by_host_1h |    545.571       |   589.893       |      44.322       |     ms |    +8.12% |
|                                                                                                   90th percentile latency |                    avg_rate_cpu_by_host_1h |    586.246       |   633.457       |      47.211       |     ms |    +8.05% |
|                                                                                                   99th percentile latency |                    avg_rate_cpu_by_host_1h |    612.782       |   665.67        |      52.8881      |     ms |    +8.63% |
|                                                                                                  100th percentile latency |                    avg_rate_cpu_by_host_1h |    643.685       |   676.101       |      32.4156      |     ms |    +5.04% |
|                                                                                              50th percentile service time |                    avg_rate_cpu_by_host_1h |    545.571       |   589.893       |      44.322       |     ms |    +8.12% |
|                                                                                              90th percentile service time |                    avg_rate_cpu_by_host_1h |    586.246       |   633.457       |      47.211       |     ms |    +8.05% |
|                                                                                              99th percentile service time |                    avg_rate_cpu_by_host_1h |    612.782       |   665.67        |      52.8881      |     ms |    +8.63% |
|                                                                                             100th percentile service time |                    avg_rate_cpu_by_host_1h |    643.685       |   676.101       |      32.4156      |     ms |    +5.04% |
|                                                                                                                error rate |                    avg_rate_cpu_by_host_1h |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     96.9667      |   105.371       |       8.4046      |  ops/s |    +8.67% |
|                                                                                                           Mean Throughput | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |    101.965       |   108.78        |       6.81516     |  ops/s |    +6.68% |
|                                                                                                         Median Throughput | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |    102.635       |   109.019       |       6.38409     |  ops/s |    +6.22% |
|                                                                                                            Max Throughput | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |    103.726       |   111.44        |       7.71393     |  ops/s |    +7.44% |
|                                                                                                   50th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |      9.12199     |     8.60417     |      -0.51782     |     ms |    -5.68% |
|                                                                                                   90th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |      9.61618     |     9.74333     |       0.12715     |     ms |    +1.32% |
|                                                                                                   99th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     12.0011      |    11.2226      |      -0.77854     |     ms |    -6.49% |
|                                                                                                 99.9th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     30.1405      |    26.7365      |      -3.40399     |     ms |   -11.29% |
|                                                                                                99.99th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     35.9378      |    40.0382      |       4.10041     |     ms |   +11.41% |
|                                                                                                  100th percentile latency | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     40.238       |    45.4119      |       5.17387     |     ms |   +12.86% |
|                                                                                              50th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |      9.12238     |     8.59791     |      -0.52448     |     ms |    -5.75% |
|                                                                                              90th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |      9.61456     |     9.74292     |       0.12837     |     ms |    +1.34% |
|                                                                                              99th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     11.8873      |    11.3041      |      -0.58328     |     ms |    -4.91% |
|                                                                                            99.9th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     29.9521      |    26.8023      |      -3.1498      |     ms |   -10.52% |
|                                                                                           99.99th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     35.9378      |    40.0382      |       4.10041     |     ms |   +11.41% |
|                                                                                             100th percentile service time | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |     40.238       |    45.4119      |       5.17387     |     ms |   +12.86% |
|                                                                                                                error rate | avg_avgot_cpu_load_1m_filtered_by_hosts_5m |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     32.1209      |    31.9924      |      -0.12857     |  ops/s |    -0.40% |
|                                                                                                           Mean Throughput |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     33.1255      |    32.8739      |      -0.25155     |  ops/s |    -0.76% |
|                                                                                                         Median Throughput |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     33.2752      |    32.9457      |      -0.3295      |  ops/s |    -0.99% |
|                                                                                                            Max Throughput |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     33.5031      |    33.0389      |      -0.46419     |  ops/s |    -1.39% |
|                                                                                                   50th percentile latency |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     29.1237      |    29.7665      |       0.64281     |     ms |    +2.21% |
|                                                                                                   90th percentile latency |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     30.2334      |    30.9895      |       0.75615     |     ms |    +2.50% |
|                                                                                                   99th percentile latency |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     33.3496      |    33.7125      |       0.36294     |     ms |    +1.09% |
|                                                                                                 99.9th percentile latency |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     34.7573      |    34.9525      |       0.19518     |     ms |    +0.56% |
|                                                                                                  100th percentile latency |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     35.7197      |   114.686       |      78.9668      |     ms |  +221.07% |
|                                                                                              50th percentile service time |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     29.1261      |    29.7665      |       0.64043     |     ms |    +2.20% |
|                                                                                              90th percentile service time |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     30.2339      |    30.9879      |       0.75394     |     ms |    +2.49% |
|                                                                                              99th percentile service time |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     33.352       |    33.6957      |       0.34371     |     ms |    +1.03% |
|                                                                                            99.9th percentile service time |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     34.7573      |    34.9525      |       0.19518     |     ms |    +0.56% |
|                                                                                             100th percentile service time |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |     35.7197      |   114.686       |      78.9668      |     ms |  +221.07% |
|                                                                                                                error rate |   avg_avgot_cpu_load_1m_prefix_by_hosts_5m |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |      sum_rate_sys_cpu_time_large_clause_5m |      0.214312    |     0.217451    |       0.00314     |  ops/s |    +1.46% |
|                                                                                                           Mean Throughput |      sum_rate_sys_cpu_time_large_clause_5m |      0.231671    |     0.230731    |      -0.00094     |  ops/s |    -0.41% |
|                                                                                                         Median Throughput |      sum_rate_sys_cpu_time_large_clause_5m |      0.233718    |     0.232701    |      -0.00102     |  ops/s |    -0.44% |
|                                                                                                            Max Throughput |      sum_rate_sys_cpu_time_large_clause_5m |      0.237292    |     0.235247    |      -0.00205     |  ops/s |    -0.86% |
|                                                                                                   50th percentile latency |      sum_rate_sys_cpu_time_large_clause_5m |   4092.65        |  4122.64        |      29.9911      |     ms |    +0.73% |
|                                                                                                   90th percentile latency |      sum_rate_sys_cpu_time_large_clause_5m |   4129.37        |  4217.21        |      87.8401      |     ms |    +2.13% |
|                                                                                                  100th percentile latency |      sum_rate_sys_cpu_time_large_clause_5m |   4172.94        |  4267.53        |      94.5869      |     ms |    +2.27% |
|                                                                                              50th percentile service time |      sum_rate_sys_cpu_time_large_clause_5m |   4092.65        |  4122.64        |      29.9911      |     ms |    +0.73% |
|                                                                                              90th percentile service time |      sum_rate_sys_cpu_time_large_clause_5m |   4129.37        |  4217.21        |      87.8401      |     ms |    +2.13% |
|                                                                                             100th percentile service time |      sum_rate_sys_cpu_time_large_clause_5m |   4172.94        |  4267.53        |      94.5869      |     ms |    +2.27% |
|                                                                                                                error rate |      sum_rate_sys_cpu_time_large_clause_5m |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |              sum_lot_filesystem_usage_top5 |     16.0532      |    13.7316      |      -2.32164     |  ops/s |   -14.46% |
|                                                                                                           Mean Throughput |              sum_lot_filesystem_usage_top5 |     16.7992      |    14.5689      |      -2.23031     |  ops/s |   -13.28% |
|                                                                                                         Median Throughput |              sum_lot_filesystem_usage_top5 |     16.882       |    14.6625      |      -2.21956     |  ops/s |   -13.15% |
|                                                                                                            Max Throughput |              sum_lot_filesystem_usage_top5 |     17.0204      |    14.8006      |      -2.21981     |  ops/s |   -13.04% |
|                                                                                                   50th percentile latency |              sum_lot_filesystem_usage_top5 |     56.3468      |    64.1212      |       7.77432     |     ms |   +13.80% |
|                                                                                                   90th percentile latency |              sum_lot_filesystem_usage_top5 |     67.3396      |    74.8935      |       7.55386     |     ms |   +11.22% |
|                                                                                                   99th percentile latency |              sum_lot_filesystem_usage_top5 |     71.6428      |    78.2397      |       6.5969      |     ms |    +9.21% |
|                                                                                                 99.9th percentile latency |              sum_lot_filesystem_usage_top5 |     74.5042      |    80.7101      |       6.20586     |     ms |    +8.33% |
|                                                                                                  100th percentile latency |              sum_lot_filesystem_usage_top5 |     84.967       |    81.814       |      -3.15301     |     ms |    -3.71% |
|                                                                                              50th percentile service time |              sum_lot_filesystem_usage_top5 |     56.3517      |    64.1459      |       7.7942      |     ms |   +13.83% |
|                                                                                              90th percentile service time |              sum_lot_filesystem_usage_top5 |     67.3375      |    74.9045      |       7.56704     |     ms |   +11.24% |
|                                                                                              99th percentile service time |              sum_lot_filesystem_usage_top5 |     71.6481      |    78.2202      |       6.57214     |     ms |    +9.17% |
|                                                                                            99.9th percentile service time |              sum_lot_filesystem_usage_top5 |     74.5042      |    80.7101      |       6.20586     |     ms |    +8.33% |
|                                                                                             100th percentile service time |              sum_lot_filesystem_usage_top5 |     84.967       |    81.814       |      -3.15301     |     ms |    -3.71% |
|                                                                                                                error rate |              sum_lot_filesystem_usage_top5 |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |                avg_avgot_memory_by_host_1m |      4.39465     |     4.42529     |       0.03064     |  ops/s |    +0.70% |
|                                                                                                           Mean Throughput |                avg_avgot_memory_by_host_1m |      4.50343     |     4.45348     |      -0.04996     |  ops/s |    -1.11% |
|                                                                                                         Median Throughput |                avg_avgot_memory_by_host_1m |      4.50671     |     4.45819     |      -0.04853     |  ops/s |    -1.08% |
|                                                                                                            Max Throughput |                avg_avgot_memory_by_host_1m |      4.52723     |     4.47893     |      -0.0483      |  ops/s |    -1.07% |
|                                                                                                   50th percentile latency |                avg_avgot_memory_by_host_1m |    216.84        |   221.691       |       4.85039     |     ms |    +2.24% |
|                                                                                                   90th percentile latency |                avg_avgot_memory_by_host_1m |    231.787       |   235.739       |       3.95144     |     ms |    +1.70% |
|                                                                                                   99th percentile latency |                avg_avgot_memory_by_host_1m |    243.024       |   247.182       |       4.1581      |     ms |    +1.71% |
|                                                                                                  100th percentile latency |                avg_avgot_memory_by_host_1m |    262.567       |   254.973       |      -7.59441     |     ms |    -2.89% |
|                                                                                              50th percentile service time |                avg_avgot_memory_by_host_1m |    216.84        |   221.691       |       4.85039     |     ms |    +2.24% |
|                                                                                              90th percentile service time |                avg_avgot_memory_by_host_1m |    231.787       |   235.739       |       3.95144     |     ms |    +1.70% |
|                                                                                              99th percentile service time |                avg_avgot_memory_by_host_1m |    243.024       |   247.182       |       4.1581      |     ms |    +1.71% |
|                                                                                             100th percentile service time |                avg_avgot_memory_by_host_1m |    262.567       |   254.973       |      -7.59441     |     ms |    -2.89% |
|                                                                                                                error rate |                avg_avgot_memory_by_host_1m |      0           |     0           |       0           |      % |     0.00% |
|                                                                                                            Min Throughput |                    avg_rate_cpu_by_host_1m |      0.262152    |     0.295491    |       0.03334     |  ops/s |   +12.72% |
|                                                                                                           Mean Throughput |                    avg_rate_cpu_by_host_1m |      0.264194    |     0.29722     |       0.03303     |  ops/s |   +12.50% |
|                                                                                                         Median Throughput |                    avg_rate_cpu_by_host_1m |      0.264491    |     0.296571    |       0.03208     |  ops/s |   +12.13% |
|                                                                                                            Max Throughput |                    avg_rate_cpu_by_host_1m |      0.264653    |     0.300344    |       0.03569     |  ops/s |   +13.49% |
|                                                                                                   50th percentile latency |                    avg_rate_cpu_by_host_1m |   3773.3         |  3385.81        |    -387.486       |     ms |   -10.27% |
|                                                                                                   90th percentile latency |                    avg_rate_cpu_by_host_1m |   3814.33        |  3448.04        |    -366.286       |     ms |    -9.60% |
|                                                                                                  100th percentile latency |                    avg_rate_cpu_by_host_1m |   3850.11        |  3492.54        |    -357.573       |     ms |    -9.29% |
|                                                                                              50th percentile service time |                    avg_rate_cpu_by_host_1m |   3773.3         |  3385.81        |    -387.486       |     ms |   -10.27% |
|                                                                                              90th percentile service time |                    avg_rate_cpu_by_host_1m |   3814.33        |  3448.04        |    -366.286       |     ms |    -9.60% |
|                                                                                             100th percentile service time |                    avg_rate_cpu_by_host_1m |   3850.11        |  3492.54        |    -357.573       |     ms |    -9.29% |
|                                                                                                                error rate |                    avg_rate_cpu_by_host_1m |      0           |     0           |       0           |      % |     0.00% 

phananh1010 added a commit to phananh1010/elasticsearch that referenced this pull request Nov 6, 2025
BASE=4e68eccd9f663c2d4879f20c409444f3d7aa558b
HEAD=d059b5f2d8e7790014d97a80fae570f96201c526
Branch=main
phananh1010 added a commit to phananh1010/elasticsearch that referenced this pull request Nov 7, 2025
BASE=4e68eccd9f663c2d4879f20c409444f3d7aa558b
HEAD=d059b5f2d8e7790014d97a80fae570f96201c526
Branch=main
@romseygeek romseygeek marked this pull request as ready for review November 12, 2025 10:18
@elasticsearchmachine elasticsearchmachine added the needs:triage Requires assignment of a team area label label Nov 12, 2025
@romseygeek romseygeek changed the title Default indexed to false for keyword dimension fields Use docvalue skippers on dimension fields Nov 12, 2025
@romseygeek
Copy link
Contributor Author

@felixbarny this is ready for a proper review now.

@romseygeek
Copy link
Contributor Author

I just realised that I haven't included flattened as part of this PR. It does look more complicated, so maybe should be left for a separate follow-up.

Copy link
Member

@felixbarny felixbarny left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!
+1 to handle flattened fields separately (if at all)

@romseygeek romseygeek added >non-issue :StorageEngine/TSDB You know, for Metrics and removed needs:triage Requires assignment of a team area label labels Nov 12, 2025
@elasticsearchmachine
Copy link
Collaborator

Pinging @elastic/es-storage-engine (Team:StorageEngine)

Copy link
Member

@martijnvg martijnvg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

@romseygeek romseygeek added the auto-merge-without-approval Automatically merge pull request when CI checks pass (NB doesn't wait for reviews!) label Nov 13, 2025
@elasticsearchmachine elasticsearchmachine merged commit ef89b90 into elastic:main Nov 13, 2025
34 checks passed
@romseygeek romseygeek deleted the dimensions/sparse-indexes branch November 13, 2025 12:34
szybia added a commit to szybia/elasticsearch that referenced this pull request Nov 13, 2025
…-json

* upstream/main: (158 commits)
  Cleanup files from repo root folder (elastic#138030)
  Implement OpenShift AI integration for chat completion, embeddings, and reranking (elastic#136624)
  Optimize AsyncSearchErrorTraceIT to avoid failures (elastic#137716)
  Removes support for null TransportService in RemoteClusterService (elastic#137939)
  Mute org.elasticsearch.index.mapper.DateFieldMapperTests testSortShortcuts elastic#138018
  rest-api-spec: fix type of enums (elastic#137521)
  Update Gradle wrapper to 9.2.0 (elastic#136155)
  Add RCS Strong Verification Documentation (elastic#137822)
  Use docvalue skippers on dimension fields (elastic#137029)
  Introduce INDEX_SHARD_COUNT_FORMAT (elastic#137210)
  Mute org.elasticsearch.xpack.inference.integration.AuthorizationTaskExecutorIT testCreatesChatCompletion_AndThenCreatesTextEmbedding elastic#138012
  Fix ES|QL search context creation to use correct results type (elastic#137994)
  Improve Snapshot Logging (elastic#137470)
  Support extra output field in TOP function (elastic#135434)
  Remove NumericDoubleValues class (elastic#137884)
  [ML] Fix ML calendar event update scalability issues (elastic#136886)
  Task may be unregistered outside of the trace context in exceptional cases. (elastic#137865)
  Refine workaround for S3 repo analysis known issue (elastic#138000)
  Additional DEBUG logging on authc failures (elastic#137941)
  Cleanup index resolution (elastic#137867)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

auto-merge-without-approval Automatically merge pull request when CI checks pass (NB doesn't wait for reviews!) >non-issue :StorageEngine/TSDB You know, for Metrics Team:StorageEngine v9.3.0

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants