Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lstripChars (0.05 sec)

  1. manifests/addons/dashboards/lib/lib-query.libsonnet

            function(k)
              if std.startsWith(labels[k], "!~") then
                '%s!~"%s"'%[ k, std.lstripChars(labels[k], '!~')]
              else if std.startsWith(labels[k], "~") then
                '%s=~"%s"'%[ k, std.lstripChars(labels[k], '~')]
              else if std.startsWith(labels[k], "!") then
                '%s!="%s"'%[ k, std.lstripChars(labels[k], '!')]
              else 
                '%s="%s"' %[k, labels[k]]
              ,
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/queries.libsonnet

        {
          query(legend, query):
            self.rawQuery(query)
            + q.withLegendFormat(legend),
    
          rawQuery(query):
            q.new(
              '$' + variables.datasource.name,
              std.rstripChars(query, '\n')
            ),
    
          allIstioBuild:
            self.query(
              '{{component}} ({{tag}})',
              sum('istio_build', by=['component', 'tag'])
            ),
    
          istioBuild:
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top