You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When triggered by an HTTP request, this extension responds with the following specified greeting: "${param:GREETING} World from ${param:EXT_INSTANCE_ID}".
31
+
Create this `fieldOverride` within `firestore.indexes.json`:
32
+
```
33
+
{
34
+
"indexes": [...],
35
+
"fieldOverrides": [
36
+
{
37
+
"collectionGroup": "support",
38
+
"fieldPath": "slackThreadTs",
39
+
"ttl": false,
40
+
"indexes": [
41
+
{
42
+
"order": "ASCENDING",
43
+
"queryScope": "COLLECTION"
44
+
},
45
+
{
46
+
"order": "DESCENDING",
47
+
"queryScope": "COLLECTION"
48
+
},
49
+
{
50
+
"arrayConfig": "CONTAINS",
51
+
"queryScope": "COLLECTION"
52
+
},
53
+
{
54
+
"order": "ASCENDING",
55
+
"queryScope": "COLLECTION_GROUP"
56
+
}
57
+
]
58
+
}
59
+
]
60
+
}
61
+
```
23
62
24
-
To learn more about HTTP functions, visit the [functions documentation](https://firebase.google.com/docs/functions/http-events).
63
+
#### Configure the Firebase Integration in the Slack App
64
+
65
+
Log in to your [Slack Apps](https://api.slack.com/apps/), select your app in the dropdown, then go to Features -> Event Subscriptions. After enabling the events, in the field **Request URL**, enter the following value:
66
+
```
67
+
${function:handler.url}
68
+
```
25
69
26
70
<!-- We recommend keeping the following section to explain how to monitor extensions with Firebase -->
27
-
# Monitoring
71
+
####Monitoring
28
72
29
73
As a best practice, you can [monitor the activity](https://firebase.google.com/docs/extensions/manage-installed-extensions#monitor) of your installed extension, including checks on its health, usage, and logs.
0 commit comments