Skip to content

Instantly share code, notes, and snippets.

@philipcristiano
Created September 2, 2013 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philipcristiano/6417091 to your computer and use it in GitHub Desktop.
Save philipcristiano/6417091 to your computer and use it in GitHub Desktop.
Retrieve the first non `null` value from Graphite datapoints
first_value([[null,Time]|T]) ->
first_value(T);
first_value([[Value, Time]|T]) ->
{ok, Value};
first_value(_)->
{error, no_value}.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment