Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withRefresh (0.12 sec)

  1. manifests/addons/dashboards/lib/variables.libsonnet

        )
        + var.query.withRefresh('time')
        + var.query.selectionOptions.withMulti()
        + var.query.selectionOptions.withIncludeAll(),
    
      pod:
        var.query.new('pod')
        + var.query.withDatasourceFromVariable(self.datasource)
        + var.query.queryTypes.withLabelValues(
          'cluster',
          'process_cpu_seconds_total',
        )
        + var.query.withRefresh('time')
        + var.query.selectionOptions.withMulti()
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/dashboard.libsonnet

    local g = import 'g.libsonnet';
    
    local variables = import './variables.libsonnet';
    
    {
      new(name):
        g.dashboard.new(name)
        + g.dashboard.graphTooltip.withSharedCrosshair()
        + g.dashboard.withRefresh('15s')
        + g.dashboard.time.withFrom('now-30m')
        + g.dashboard.time.withTo('now')
        + g.dashboard.withVariables([variables.datasource]),
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 354 bytes
    - Viewed (0)
Back to top