-
Notifications
You must be signed in to change notification settings - Fork 26
/
rule-file.template.json
79 lines (79 loc) · 2.36 KB
/
rule-file.template.json
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
{
"properties": {
"dataCollectionEndpointId": "##dataCollectionEndpointId##",
"streamDeclarations": {
"Custom-AzureOpenAIUsage_PP_CL": {
"columns": [
{
"name": "RequestReceivedUtc",
"type": "datetime"
},
{
"name": "Client",
"type": "datetime"
},
{
"name": "IsStreaming",
"type": "boolean"
},
{
"name": "PromptTokens",
"type": "int"
},
{
"name": "CompletionTokens",
"type": "int"
},
{
"name": "TotalTokens",
"type": "int"
},
{
"name": "AoaiRoundtripTimeMS",
"type": "real"
},
{
"name": "AoaiRegion",
"type": "string"
},
{
"name": "AoaiEndpoint",
"type": "string"
},
{
"name": "AoaiVirtualDeployment",
"type": "string"
},
{
"name": "AoaiStandinDeployment",
"type": "string"
},
{
"name": "AoaiApiVersion",
"type": "string"
}
]
}
}
},
"destinations": {
"logAnalytics": [
{
"workspaceResourceId": "##workspaceResourceId##",
"name": "LogAnalyticsDest"
}
]
},
"dataFlows": [
{
"streams": [
"Custom-AzureOpenAIUsage_PP_CL"
],
"destinations": [
"LogAnalyticsDest"
],
"transformKql": "source | extend TimeGenerated = now()",
"outputStream": "Custom-AzureOpenAIUsage_PP_CL"
}
]
}