Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for jsonfmt (0.26 sec)

  1. internal/s3select/parquet/reader.go

    				return nil, errParquetParsingError(err)
    			}
    		}
    		kvs = append(kvs, jstream.KV{Key: col.FlatName(), Value: value})
    	}
    
    	// Reuse destination if we can.
    	dstRec, ok := dst.(*jsonfmt.Record)
    	if !ok {
    		dstRec = &jsonfmt.Record{}
    	}
    	dstRec.SelectFormat = sql.SelectFmtParquet
    	dstRec.KVS = kvs
    	return dstRec, nil
    }
    
    // convertFromAnnotation - converts values based on the Parquet column's type
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/README.md

    These get publish to [Grafana](https://grafana.com/orgs/istio/dashboards) during release, and are bundled into our
    [Grafana sample](../../../samples/addons/grafana.yaml).
    
    ## Jsonnet
    
    Newer dashboards are generated with [Jsonnet](https://jsonnet.org/) with the [Grafonnet](https://grafana.github.io/grafonnet/index.html).
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  3. manifests/addons/dashboards/jsonnetfile.lock.json

            "git": {
              "remote": "https://github.com/jsonnet-libs/docsonnet.git",
              "subdir": "doc-util"
            }
          },
          "version": "6ac6c69685b8c29c54515448eaca583da2d88150",
          "sum": "BrAL/k23jq+xy9oA7TWIhUx07dsA/QLm3g7ktCwe//U="
        },
        {
          "source": {
            "git": {
              "remote": "https://github.com/jsonnet-libs/xtd.git",
              "subdir": ""
            }
          },
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/lib-grid.libsonnet

    local d = import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet';
    
    local panelUtil = import 'github.com/grafana/grafonnet/gen/grafonnet-v11.0.0/custom/util/panel.libsonnet';
    
    // This is forked from https://grafana.github.io/grafonnet/API/util.html#obj-grid
    // to allow automatic width to fill the grid
    {
      local root = self,
    
      local gridWidth = 24,
    
      '#makeGrid':: d.func.new(
        |||
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. manifests/addons/gen.sh

    }
    
    # Set up grafana
    {
      # Generate all dynamic dashboards
      (
        pushd "${DASHBOARDS}" > /dev/null
        jb install
        for file in *.libsonnet; do
          dashboard="${file%.*}"
          jsonnet -J vendor -J lib "${file}" > "${dashboard}-dashboard.gen.json"
        done
      )
      helm3 template grafana grafana \
        --namespace istio-system \
        --version "${GRAFANA_VERSION}" \
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Sun Nov 03 18:01:40 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top