• Home
  • Raw
  • Download

Lines Matching +refs:protobuf +refs:mode +refs:syntax +refs:table

77 To do this, trace processor is started in *interactive mode* while
169 `CREATE FUNCTION` syntax which is available in other SQL engines (e.g.
191 -- SELECT statement (even if you're not selecting from a table as in this
218 columns. Such functions can be invoked any place where a table or
244 -- table or view.
330 The syntax for templated metric files is essentially a highly simplified version of
331 [Jinja's](https://jinja.palletsprojects.com/en/3.0.x/) syntax.
362 ```protobuf
372 ```protobuf
380 ```protobuf
392 - The choice of field name here is important as the SQL file and the final table generated in SQL w…
396 ```protobuf
397 syntax = "proto2";
420 Next, write the SQL to generate the table of the top 5 processes ordered by the
443 1. The first table used is the `sched` table. This contains all the scheduling
446 two pieces of information needed from the sched table are the `dur` -
448 `utid` which will be used to join with the thread table.
449 2. The next table is the thread table. This gives us a lot of information which
454 3. The final table is the process table. This gives the name of the process
464 Now that the result of the metric has been expressed as an SQL table, it needs
468 Let's look at how it works for our table above.
497 `top_five_processes_by_cpu` table. The output will be the fully filled
502 function. Practically, this means that it takes a full table of values and
508 2. Next is creation of the `TopProcesses` proto. By now, the syntax should
573 …e of this file to find the proto and to figure out the name of the output table for the proto and …