Travis Reeder
Travis Reeder
It would be nice to provide middleware for user applications, in the form of another function, so that a user can add things like authentication for instance. * User adds...
Maybe check version in swagger vs latest tag on one of the libs on github.
How does a user get notified when an issue starts happening (function starts to error)? If we have syslog logging, they can use logger to get errors, but might be...
Currently logs are emitted for each function call with the following values: ```sh call_id="123" function="FUNCTION_NAME" ``` If it's the user's logs (written to STDERR), there is also: ``` user_log=true ```...
Sync responds with stdout output and logs stderr. Async logs both stdout and stderr. Perhaps we could optionally store the async output temporarily to support workflows and piping together functions...
First one: #170
See: “The Overhead of Docker Run” @treeder https://medium.com/travis-on-docker/the-overhead-of-docker-run-f2f06d47c9f3
Triggers functions on a repeating schedule. Use new input format discussed recently and probably CRON format as well. ---- # Proposal for cron support Basic architecture sketch for each IronFunctions...
This is tricky because of this: https://github.com/iron-io/functions/issues/71 ie: https://github.com/iron-io/functions/pull/74/files#diff-e180f07f5c320b82004c2bb065eedef0R99 The problem is we'd like to query for a single route, but let's say the route is defined as: ``` /blogs/:blog_id/comments/:comment_id...