Posts by Rafael dos Santos • 146 points
4 posts
-
1
votes1
answer218
viewsA: Elasticsearch: Add multiple fields of a document
Thiago, Voce can simply add one more item in its aggregation that sums the results. Just take care to use the correct ES rating. In your example to add the 3 fields would look like this: "aggs" : {…
elasticsearchanswered Rafael dos Santos 146 -
1
votes1
answer115
viewsA: Azure - Error 401
Your address is incorrect. The app services' url pattern is: http://nomedoSite.azurewebsites.net. In your case the correct url would be:…
-
0
votes1
answer212
viewsA: Error handling does not work
Hello, A simple way to validate having Stacktrace of your error would be to enable FREB Logs in your App Service. FREB LOGS: Detailed information on failed requests, including a tracking of IIS…
-
1
votes1
answer45
viewsA: Start nodejs in Azure
In Azure Voce you cannot specify a fixed port to run the application. You should check the port on the environment variables: var port = process.env.port || 3000; http.listen(port, function(){…