-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtelemetry.json
54 lines (54 loc) · 1.42 KB
/
telemetry.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
{
"EXTENSION_LOADED": {
"description": "Sent when the extension is activated"
},
"AI_PROVIDER_VALIDATION_FAILED": {
"description": "Sent when configuration settings are invalid. Tracked because of Ollama flexibility."
},
"VECTOR_STORE_LOAD_FAILED": {
"description": "Sent when the vector store fails to load."
},
"COMPOSE_STARTED": {
"description": "Sent when the compose feature is used.",
"properties": {
"numberOfFiles": {
"classification": "SystemMetaData",
"purpose": "FeatureInsight",
"comment": "The number of files provided as context."
}
}
},
"COMPOSE_PHASE": {
"description": "Sent when the compose feature responds, tracks which phase has executed.",
"properties": {
"phase": {
"classification": "SystemMetaData",
"purpose": "FeatureInsight",
"comment": "The phase name in the response."
}
}
},
"INDEX_BUILD_STARTED": {
"description": "Sent when the user initiates a full index build."
},
"VALIDATE_SUCCEEDED": {
"description": "Sent when the validate feature succeeds.",
"properties": {
"command": {
"classification": "SystemMetaData",
"purpose": "FeatureInsight",
"comment": "The command executed."
}
}
},
"VALIDATE_FAILED": {
"description": "Sent when the validate feature fails.",
"properties": {
"command": {
"classification": "SystemMetaData",
"purpose": "FeatureInsight",
"comment": "The command failed."
}
}
}
}