-
Notifications
You must be signed in to change notification settings - Fork 431
Expand file tree
/
Copy pathtoc.yml
More file actions
1790 lines (1790 loc) · 65.5 KB
/
toc.yml
File metadata and controls
1790 lines (1790 loc) · 65.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
items:
- name: Syntax conventions
href: syntax-conventions.md
- name: Add a comment
href: comment.md
- name: Set timeout limits
href: ../set-timeout-limits.md
- name: Database cursors
href: database-cursor.md
- name: Debug KQL inline Python
href: ../debug-inline-python.md
- name: Best practices for KQL queries
items:
- name: Best practices for KQL queries
href: best-practices.md
- name: Optimize queries that use named expressions
displayName: let statement, user defined functions, as operator, calculated
href: named-expressions.md
- name: Entities
items:
- name: Entity types
href: schema-entities/index.md
- name: Entity names
displayName: language keywords, KQL keywords, keywords
href: schema-entities/entity-names.md
- name: Entity references
href: schema-entities/entity-references.md
- name: Databases
href: schema-entities/databases.md
- name: Tables
href: schema-entities/tables.md
- name: Columns
href: schema-entities/columns.md
- name: Stored functions
href: schema-entities/stored-functions.md
- name: Views
href: schema-entities/views.md
- name: External tables
href: schema-entities/external-tables.md
- name: Fact and dimension tables
href: ../concepts/fact-and-dimension-tables.md
- name: Data types
items:
- name: Scalar data types
href: scalar-data-types/index.md
- name: bool
href: scalar-data-types/bool.md
displayName: boolean
- name: datetime
href: scalar-data-types/datetime.md
displayName: date
- name: decimal
href: scalar-data-types/decimal.md
- name: dynamic
href: scalar-data-types/dynamic.md
- name: guid
href: scalar-data-types/guid.md
displayName: uuid, uniqueid
- name: int
href: scalar-data-types/int.md
- name: long
href: scalar-data-types/long.md
- name: real
href: scalar-data-types/real.md
displayName: double
- name: string
href: scalar-data-types/string.md
- name: timespan
href: scalar-data-types/timespan.md
displayName: time
- name: Null values
href: scalar-data-types/null-values.md
- name: Functions
items:
- name: Function types
href: functions/index.md
- name: User-defined functions
displayName: Kusto view, views, Kusto function
href: functions/user-defined-functions.md
- name: Functions library
href: ../functions-library/toc.yml
- name: Query statements
items:
- name: Query statement types
href: statements.md
- name: Alias statement
href: alias-statement.md
- name: Let statement
href: let-statement.md
- name: Pattern statement
href: pattern-statement.md
- name: Query parameters statement
href: query-parameters-statement.md
- name: Restrict statement
href: restrict-statement.md
- name: Set statement
href: set-statement.md
- name: Tabular expression statements
displayName: views
href: tabular-expression-statements.md
- name: Batches
href: batches.md
- name: Tabular operators
items:
- name: Query operators
href: queries.md
- name: as operator
href: as-operator.md
- name: consume operator
href: consume-operator.md
- name: count operator
href: count-operator.md
- name: datatable operator
href: datatable-operator.md
- name: distinct operator
href: distinct-operator.md
- name: evaluate operator
href: evaluate-operator.md
- name: extend operator
href: extend-operator.md
- name: externaldata operator
href: externaldata-operator.md
- name: facet operator
href: facet-operator.md
- name: find operator
href: find-operator.md
- name: fork operator
href: fork-operator.md
- name: getschema operator
href: getschema-operator.md
- name: invoke operator
href: invoke-operator.md
- name: join operator
items:
- name: join operator
href: join-operator.md
- name: join flavors
items:
- name: innerunique
href: join-innerunique.md
- name: inner
href: join-inner.md
- name: leftouter
href: join-leftouter.md
- name: rightouter
href: join-rightouter.md
- name: fullouter
href: join-fullouter.md
- name: leftsemi
href: join-leftsemi.md
- name: leftanti
href: join-leftanti.md
displayName: leftantisemi, anti
- name: rightsemi
href: join-rightsemi.md
displayName: rightantisemi
- name: rightanti
href: join-rightanti.md
- name: Cross-cluster join
href: join-cross-cluster.md
displayName: cross cluster
- name: Broadcast join
href: broadcast-join.md
- name: Time window join
href: join-time-window.md
- name: lookup operator
href: lookup-operator.md
- name: macro-expand operator
href: macro-expand-operator.md
- name: mv-apply operator
href: mv-apply-operator.md
displayName: mv apply mv_apply
- name: mv-expand operator
href: mv-expand-operator.md
displayName: mv expand mv_expand
- name: project operator
href: project-operator.md
- name: project-away operator
href: project-away-operator.md
displayName: project away project_away
- name: project-by-names operator
href: project-by-names-operator.md
displayName: project by names project_by_names
- name: project-keep operator
href: project-keep-operator.md
displayName: project keep project_keep
- name: project-rename operator
href: project-rename-operator.md
displayName: project rename project_rename
- name: project-reorder operator
href: project-reorder-operator.md
displayName: project reorder project_reorder
- name: parse operator
href: parse-operator.md
- name: parse-where operator
href: parse-where-operator.md
displayName: parse where parse_where
- name: parse-kv operator
href: parse-kv-operator.md
displayName: parse kv parse_kv
- name: partition operator
href: partition-operator.md
- name: print operator
href: print-operator.md
- name: range operator
href: range-operator.md
- name: reduce operator
href: reduce-operator.md
- name: render operator
items:
- name: render operator
href: render-operator.md
- name: visualizations
items:
- name: anomalychart
displayName: anomaly chart
href: visualization-anomalychart.md
- name: areachart
displayName: area chart
href: visualization-areachart.md
- name: barchart
displayName: bar chart
href: visualization-barchart.md
- name: card
href: visualization-card.md
- name: columnchart
displayName: column chart
href: visualization-columnchart.md
- name: ladderchart
displayName: ladder chart
href: visualization-ladderchart.md
- name: linechart
displayName: line chart
href: visualization-linechart.md
- name: piechart
displayName: pie chart
href: visualization-piechart.md
- name: pivotchart
displayName: pivot chart
href: visualization-pivotchart.md
- name: Plotly
href: visualization-plotly.md
- name: scatterchart
displayName: scatter chart
href: visualization-scatterchart.md
- name: stackedareachart
displayName: stacked area chart
href: visualization-stackedareachart.md
- name: table
href: visualization-table.md
- name: timechart
displayName: time chart
href: visualization-timechart.md
- name: timepivot
displayName: time pivot
href: visualization-timepivot.md
- name: treemap
href: visualization-treemap.md
- name: sample operator
href: sample-operator.md
- name: sample-distinct operator
href: sample-distinct-operator.md
displayName: sample distinct sample_distinct
- name: scan operator
href: scan-operator.md
- name: search operator
href: search-operator.md
- name: serialize operator
href: serialize-operator.md
- name: shuffle query
displayName: hint.shufflekey, hint.strategy, shufflekey, hint, strategy
href: shuffle-query.md
- name: sort operator
displayName: order operator
href: sort-operator.md
- name: summarize operator
items:
- name: summarize operator overview
href: summarize-operator.md
- name: Using hll() and tdigest()
href: using-hll-tdigest.md
- name: take operator
displayName: limit operator
href: take-operator.md
- name: top operator
href: top-operator.md
- name: top-nested operator
href: top-nested-operator.md
displayName: top nested top_nested
- name: top-hitters operator
href: top-hitters-operator.md
displayName: top hitters top_hitters
- name: union operator
href: union-operator.md
- name: where operator
displayName: filter operator
href: where-operator.md
- name: Special functions
items:
- name: Cross-cluster and cross-database queries
href: cross-cluster-or-database-queries.md
displayName: cross cluster, cross database, schema change, schemas, partial query failure
- name: cluster()
href: cluster-function.md
- name: database()
href: database-function.md
- name: external_table()
href: external-table-function.md
displayName: external table external-table
- name: graph()
href: graph-function.md
- name: materialize()
href: materialize-function.md
- name: materialized_view()
href: materialized-view-function.md
displayName: materialized view materialized-view
- name: Query results cache
href: query-results-cache.md
- name: stored_query_result()
href: stored-query-result-function.md
displayName: stored query result
- name: table()
href: table-function.md
- name: toscalar()
href: toscalar-function.md
displayName: to_scalar to-scalar
- name: Scalar operators
items:
- name: between operators
items:
- name: between operator
href: between-operator.md
- name: "!between operator"
displayName: not between operator
href: not-between-operator.md
- name: Bitwise binary operators
href: bin-operators.md
- name: Datetime/timespan arithmetic
href: datetime-timespan-arithmetic.md
- name: in operators
items:
- name: in operator
displayName: in operator case sensitive
href: in-cs-operator.md
- name: in~ operator
href: in-operator.md
- name: "!in operator"
displayName: not in operator case sensitive
href: not-in-cs-operator.md
- name: "!in~ operator"
displayName: not in operator
href: not-in-operator.md
- name: Logical or binary operators
href: logical-operators.md
- name: Numerical operators
href: numerical-operators.md
- name: String operators
items:
- name: String operators overview
href: datatypes-string-operators.md
- name: contains operator
href: contains-operator.md
- name: contains_cs operator
displayName: contains operator case sensitive
href: contains-cs-operator.md
- name: "!contains operator"
displayName: not contains operator
href: not-contains-operator.md
- name: "!contains_cs operator"
displayName: not contains operator case sensitive
href: not-contains-cs-operator.md
- name: endswith operator
href: endswith-operator.md
- name: endswith_cs operator
displayName: ends with operator case sensitive
href: endswith-cs-operator.md
- name: "!endswith operator"
displayName: not ends with operator
href: not-endswith-operator.md
- name: "!endswith_cs operator"
displayName: not ends with operator case sensitive
href: not-endswith-cs-operator.md
- name: "== (equals) operator"
displayName: equals case sensitive operator
href: equals-cs-operator.md
- name: "=~ (equals) operator"
href: equals-operator.md
- name: "!= (not equals) operator"
displayName: not equals case sensitive operator
href: not-equals-cs-operator.md
- name: "!~ (not equals) operator"
href: not-equals-operator.md
- name: has operator
href: has-operator.md
- name: has_cs operator
displayName: has operator case sensitive
href: has-cs-operator.md
- name: "!has operator"
displayName: not has operator
href: not-has-operator.md
- name: "!has_cs operator"
displayName: not has operator case sensitive
href: not-has-cs-operator.md
- name: hasprefix operator
href: hasprefix-operator.md
- name: hasprefix_cs operator
displayName: has prefix operator case sensitive
href: hasprefix-cs-operator.md
- name: "!hasprefix operator"
displayName: not has prefix operator
href: not-hasprefix-operator.md
- name: "!hasprefix_cs operator"
displayName: not has prefix operator case sensitive
href: not-hasprefix-cs-operator.md
- name: hassuffix operator
href: hassuffix-operator.md
- name: hassuffix_cs operator
displayName: has suffix operator case sensitive
href: hassuffix-cs-operator.md
- name: "!hassuffix operator"
displayName: not has suffix operator
href: not-hassuffix-operator.md
- name: "!hassuffix_cs operator"
displayName: not has suffix operator case sensitive
href: not-hassuffix-cs-operator.md
- name: has_all operator
displayName: has all operator
href: has-all-operator.md
- name: has_any operator
displayName: has any operator
href: has-any-operator.md
- name: in operator
displayName: in operator case sensitive
href: in-cs-operator.md
- name: "in~ operator"
href: in-operator.md
- name: "!in operator"
displayName: not in operator case sensitive
href: not-in-cs-operator.md
- name: "!in~ operator"
displayName: not in operator
href: not-in-operator.md
- name: matches regex operator
displayName: case-sensitive matches regex
href: matches-regex-operator.md
- name: startswith operator
displayName: starts with operator
href: startswith-operator.md
- name: startswith_cs operator
displayName: starts with operator case sensitive
href: startswith-cs-operator.md
- name: "!startswith operator"
displayName: not starts with operator
href: not-startswith-operator.md
- name: "!startswith_cs operator"
displayName: not starts with operator case sensitive
href: not-startswith-cs-operator.md
- name: Scalar functions
items:
- name: Scalar function types
displayName: stored procedures
href: scalar-functions.md
- name: abs()
href: abs-function.md
- name: acos()
href: acos-function.md
- name: ago()
href: ago-function.md
- name: around()
href: around-function.md
- name: array_concat()
href: array-concat-function.md
- name: array_iff()
displayName: array_iif() array iif
href: array-iff-function.md
- name: array_index_of()
displayName: array index of
href: array-index-of-function.md
- name: array_length()
displayName: arraylength() array length
href: array-length-function.md
- name: array_reverse()
displayName: array reverse
href: array-reverse-function.md
- name: array_rotate_left()
displayName: array rotate left
href: array-rotate-left-function.md
- name: array_rotate_right()
displayName: array rotate right
href: array-rotate-right-function.md
- name: array_shift_left()
displayName: array shift left
href: array-shift-left-function.md
- name: array_shift_right()
displayName: array shift right
href: array-shift-right-function.md
- name: array_slice()
displayName: array slice
href: array-slice-function.md
- name: array_sort_asc()
displayName: array sort asc
href: array-sort-asc-function.md
- name: array_sort_desc()
displayName: array sort desc
href: array-sort-desc-function.md
- name: array_split()
displayName: array split
href: array-split-function.md
- name: array_sum()
displayName: array sum
href: array-sum-function.md
- name: asin()
displayName: asin function
href: asin-function.md
- name: assert()
href: assert-function.md
- name: atan()
href: atan-function.md
- name: atan2()
href: atan2-function.md
- name: bag_has_key()
displayName: bag has key
href: bag-has-key-function.md
- name: bag_keys()
displayName: bag keys
href: bag-keys-function.md
- name: bag_merge()
displayName: bag merge
href: bag-merge-function.md
- name: bag_pack()
displayName: pack(), pack_dictionary(), bag pack
href: pack-function.md
- name: bag_pack_columns()
displayName: bag pack columns, dynamic object, property bag
href: bag-pack-columns-function.md
- name: bag_remove_keys()
displayName: bag remove keys
href: bag-remove-keys-function.md
- name: bag_set_key()
displayName: bag set key
href: bag-set-key-function.md
- name: bag_zip()
displayName: bag zip
href: bag-zip.md
- name: base64_decode_toarray()
displayName: base64_decode_toarray()
href: base64-decode-toarray-function.md
- name: base64_decode_tostring()
displayName: base64_decodestring() vase64 decode string
href: base64-decode-tostring-function.md
- name: base64_decode_toguid()
displayName: base64_decode_toguid() base64 decode to guid
href: base64-decode-toguid-function.md
- name: base64_encode_fromarray()
displayName: base64 encode from array
href: base64-encode-fromarray-function.md
- name: base64_encode_tostring()
displayName: base64_encodestring() base 64 encode string
href: base64-encode-tostring-function.md
- name: base64_encode_fromguid()
displayName: base64_encode_fromguid() base64 encode from guid
href: base64-encode-fromguid-function.md
- name: beta_cdf()
displayName: beta_cdf() beta cdf
href: beta-cdf-function.md
- name: beta_inv()
displayName: beta_inv() beta inv
href: beta-inv-function.md
- name: beta_pdf()
displayName: beta_pdf() beta pdf
href: beta-pdf-function.md
- name: bin()
displayName: floor()
href: bin-function.md
- name: bin_at()
displayName: bin_at() bin at
href: bin-at-function.md
- name: bin_auto()
displayName: bin_auto() bin auto
href: bin-auto-function.md
- name: binary_and()
displayName: binary_and() binary and
href: binary-and-function.md
- name: binary_not()
displayName: binary_not() binary not
href: binary-not-function.md
- name: binary_or()
displayName: binary_or() binary or
href: binary-or-function.md
- name: binary_shift_left()
displayName: binary_shift_left() binary shift left
href: binary-shift-left-function.md
- name: binary_shift_right()
displayName: binary_shift_right() binary shift right
href: binary-shift-right-function.md
- name: binary_xor()
displayName: binary_xor() binary xor
href: binary-xor-function.md
- name: bitset_count_ones()
displayName: bitset_count_ones() bitset count ones
href: bitset-count-ones-function.md
- name: case()
href: case-function.md
- name: ceiling()
href: ceiling-function.md
displayName: ceiling() ceiling function
- name: coalesce()
href: coalesce-function.md
- name: column_ifexists()
displayName: columnifexists() column if exists
href: column-ifexists-function.md
- name: column_names_of()
displayName: columnnamesof() column names of
href: column-names-of-function.md
- name: convert_angle()
displayName: convert_angle() convert angle
href: convert-angle-function.md
- name: convert_energy()
displayName: convert_energy() convert energy
href: convert-energy-function.md
- name: convert_force()
displayName: convert_force() convert force
href: convert-force-function.md
- name: convert_length()
displayName: convert_length() convert length
href: convert-length-function.md
- name: convert_mass()
displayName: convert_mass() convert mass
href: convert-mass-function.md
- name: convert_speed()
displayName: convert_speed() convert speed
href: convert-speed-function.md
- name: convert_temperature()
displayName: convert_temperature() convert temperature
href: convert-temperature-function.md
- name: convert_volume()
displayName: convert_volume() convert volume
href: convert-volume-function.md
- name: cos()
href: cos-function.md
- name: cot()
href: cot-function.md
- name: countof()
displayName: countof() count of
href: countof-function.md
- name: current_cluster_endpoint()
displayName: current_cluster_endpoint() current cluster endpoint
href: current-cluster-endpoint-function.md
- name: current_database()
displayName: current_database() current database
href: current-database-function.md
- name: current_principal()
displayName: current_principal() current principal
href: current-principal-function.md
- name: current_principal_details()
displayName: current_principal_details() current principal details
href: current-principal-details-function.md
- name: current_principal_is_member_of()
displayName: current_principal_is_member_of() current principal is member of
href: current-principal-is-member-of-function.md
- name: cursor_after()
displayName: cursor_after() cursor after
href: cursor-after-function.md
- name: cursor_before_or_at()
displayName: cursor_before_or_at() cursor before or at
href: cursor-before-or-at-function.md
- name: cursor_current()
displayName: current_cursor() cursor current
href: cursor-current.md
- name: datetime_add()
displayName: datetime_add() datetime add
href: datetime-add-function.md
- name: datetime_diff()
displayName: datetime_diff() datetime diff
href: datetime-diff-function.md
- name: datetime_list_timezones()
displayName: datetime_list_timezones() list timezones
href: datetime-list-timezones.md
- name: datetime_local_to_utc()
href: datetime-local-to-utc-function.md
- name: datetime_part()
displayName: datepart()
href: datetime-part-function.md
- name: datetime_utc_to_local()
displayName: datetime_utc_to_local() datetime utc to local
href: datetime-utc-to-local-function.md
- name: dayofmonth()
displayName: dayofmonth() day of month
href: day-of-month-function.md
- name: dayofweek()
displayName: dayofweek() day of week
href: day-of-week-function.md
- name: dayofyear()
displayName: day of year
href: day-of-year-function.md
- name: dcount_hll()
displayName: dcount hll
href: dcount-hll-function.md
- name: degrees()
href: degrees-function.md
- name: dynamic_to_json()
displayName: dynamic_to_json() dynamic to json
href: dynamic-to-json-function.md
- name: endofday()
displayName: endofday() end of day
href: endofday-function.md
- name: endofmonth()
displayName: endofmonth() end of month
href: endofmonth-function.md
- name: endofweek()
displayName: endofweek() end of week
href: endofweek-function.md
- name: endofyear()
displayName: endofyear() end of year
href: endofyear-function.md
- name: erf()
displayName: Gaussian, error function, statistics, distribution
href: erf-function.md
- name: erfc()
displayName: complementary error function, statistics, distribution
href: erfc-function.md
- name: estimate_data_size()
displayName: estimate_data_size() estimate data size
href: estimate-data-size-function.md
- name: exp()
href: exp-function.md
- name: exp10()
href: exp10-function.md
- name: exp2()
href: exp2-function.md
- name: extent_id()
displayName: extentid() extent id
href: extent-id-function.md
- name: extent_tags()
displayName: extenttags() extent tags
href: extent-tags-function.md
- name: extract()
href: extract-function.md
- name: extract_all()
displayName: extractall() extract all
href: extract-all-function.md
- name: extract_json()
displayName: extractjson() extract json
href: extract-json-function.md
- name: format_bytes()
displayName: format bytes
href: format-bytes-function.md
- name: format_datetime()
displayName: format datetime
href: format-datetime-function.md
- name: format_ipv4()
displayName: format ipv4
href: format-ipv4-function.md
- name: format_ipv4_mask()
displayName: format ipv4 mask
href: format-ipv4-mask-function.md
- name: format_timespan()
displayName: format timespan
href: format-timespan-function.md
- name: gamma()
href: gamma-function.md
- name: geo_info_from_ip_address()
displayName: geo info from ip address
href: geo-info-from-ip-address-function.md
- name: gettype()
displayName: get type
href: gettype-function.md
- name: getyear()
displayName: get year
href: getyear-function.md
- name: gzip_compress_to_base64_string()
displayName: gzip compress to base64 string
href: gzip-base64-compress.md
- name: gzip_decompress_from_base64_string()
displayName: gzip decompress from base64 string
href: gzip-base64-decompress.md
- name: has_any_index()
displayName: has any index
href: has-any-index-function.md
- name: has_any_ipv4()
displayName: has any ipv4
href: has-any-ipv4-function.md
- name: has_ipv4()
displayName: has ipv4
href: has-ipv4-function.md
- name: has_any_ipv4_prefix()
displayName: has any ipv4 prefix
href: has-any-ipv4-prefix-function.md
- name: has_ipv4_prefix()
displayName: has ipv4 prefix
href: has-ipv4-prefix-function.md
- name: hash()
href: hash-function.md
- name: hash_combine()
displayName: hash combine
href: hash-combine-function.md
- name: hash_many()
displayName: hash many
href: hash-many-function.md
- name: hash_md5()
displayName: hash md5
href: hash-md5-function.md
- name: hash_sha1()
displayName: hash sha1
href: hash-sha1-function.md
- name: hash_sha256()
displayName: hash sha256
href: hash-sha256-function.md
- name: hash_xxhash64()
displayName: hash xxhash64
href: hash-xxhash64-function.md
- name: hll_merge()
displayName: hll merge
href: hll-merge-function.md
- name: hourofday()
displayName: hourofday() hour of day
href: hour-of-day-function.md
- name: iff()
displayName: iif()
href: iff-function.md
- name: indexof()
displayName: index of
href: indexof-function.md
- name: indexof_regex()
displayName: index of regex
href: indexof-regex-function.md
- name: ingestion_time()
displayName: ingestion time
href: ingestion-time-function.md
- name: ipv4_compare()
displayName: ipv4 compare
href: ipv4-compare-function.md
- name: ipv4_is_in_range()
displayName: ipv4 is in range
href: ipv4-is-in-range-function.md
- name: ipv4_is_in_any_range()
displayName: ipv4 is in any range
href: ipv4-is-in-any-range-function.md
- name: ipv4_is_match()
displayName: ipv4 is match
href: ipv4-is-match-function.md
- name: ipv4_is_private()
displayName: ipv4 is private
href: ipv4-is-private-function.md
- name: ipv4_range_to_cidr_list()
displayName: ipv4 range to cidr list
href: ipv4-range-to-cidr-list-function.md
- name: ipv4_netmask_suffix()
displayName: ipv4 netmask suffix
href: ipv4-netmask-suffix-function.md
- name: ipv6_compare()
displayName: ipv6 compare
href: ipv6-compare-function.md
- name: ipv6_is_in_range()
displayName: ipv6 is in range
href: ipv6-is-in-range-function.md
- name: ipv6_is_in_any_range()
displayName: ipv6 is in any range
href: ipv6-is-in-any-range-function.md
- name: ipv6_is_match()
displayName: ipv6 is match
href: ipv6-is-match-function.md
- name: isascii()
href: isascii.md
- name: isempty()
displayName: is empty
href: isempty-function.md
- name: isfinite()
displayName: is finite
href: isfinite-function.md
- name: isinf()
displayName: is inf
href: isinf-function.md
- name: isnan()
displayName: is nan
href: isnan-function.md
- name: isnotempty()
displayName: is not empty notempty()
href: isnotempty-function.md
- name: isnotnull()
displayName: is not null notnull()
href: isnotnull-function.md
- name: isnull()
displayName: is null
href: isnull-function.md
- name: isutf8()
displayName: is utf8
href: isutf8-function.md
- name: jaccard_index()
displayName: jaccard index
href: jaccard-index-function.md
- name: log()
href: log-function.md
- name: log10()
href: log10-function.md
- name: log2()
href: log2-function.md
- name: loggamma()
displayName: log gamma
href: loggamma-function.md
- name: make_datetime()
displayName: make datetime
href: make-datetime-function.md
- name: make_timespan()
displayName: make timespan
href: make-timespan-function.md
- name: max_of()
displayName: max of
href: max-of-function.md
- name: merge_tdigest()
displayName: merge tdigest tdigest_merge()
href: merge-tdigest-function.md
- name: min_of()
displayName: min of
href: min-of-function.md
- name: monthofyear()
displayName: getmonth() month of year
href: monthofyear-function.md
- name: new_guid()
displayName: new guid
href: new-guid-function.md
- name: not()
href: not-function.md
- name: now()
href: now-function.md
- name: pack_all()
displayName: pack all
href: pack-all-function.md
- name: pack_array()
displayName: pack array
href: pack-array-function.md
- name: parse_command_line()
displayName: parse command line
href: parse-command-line-function.md
- name: parse_csv()
displayName: parse csv
href: parse-csv-function.md
- name: parse_ipv4()
displayName: parse ipv4
href: parse-ipv4-function.md
- name: parse_ipv4_mask()
displayName: parse ipv4 mask
href: parse-ipv4-mask-function.md
- name: parse_ipv6()
displayName: parse ipv6
href: parse-ipv6-function.md
- name: parse_ipv6_mask()
displayName: parse ipv6 mask
href: parse-ipv6-mask-function.md
- name: parse_json()
displayName: parse json toobject(), parsejson(), todynamic()
href: parse-json-function.md
- name: parse_path()
displayName: parse path
href: parse-path-function.md
- name: parse_url()
displayName: parse url parseurl()
href: parse-url-function.md
- name: parse_urlquery()
displayName: parse url query parseurlquery()
href: parse-url-query-function.md
- name: parse_user_agent()
displayName: parse user agent
href: parse-user-agent-function.md
- name: parse_version()
displayName: parse version
href: parse-version-function.md
- name: parse_xml()
displayName: parse xml
href: parse-xml-function.md
- name: percentile_tdigest()
displayName: percentile tdigest()
href: percentile-tdigest-function.md
- name: percentile_array_tdigest()
displayName: percentile array tdigest()
href: percentile-array-tdigest-function.md
- name: percentrank_tdigest()
displayName: percentrank tdigest()
href: percentrank-tdigest-function.md
- name: pi()
href: pi-function.md
- name: pow()
href: pow-function.md
- name: punycode_from_string()
displayName: punycode from string
href: punycode-from-string-function.md
- name: punycode_to_string()
displayName: punycode to string
href: punycode-to-string-function.md
- name: punycode_domain_from_string()
displayName: punycode domain from string
href: punycode-domain-from-string-function.md
- name: punycode_domain_to_string()
displayName: punycode domain to string
href: punycode-domain-to-string-function.md
- name: radians()
href: radians-function.md
- name: rand()
href: rand-function.md
- name: range()