Skip to content

Instantly share code, notes, and snippets.

@cjimti
Created October 26, 2017 17:28
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 cjimti/43167e4efdf92c129747cc39c26e62b0 to your computer and use it in GitHub Desktop.
Save cjimti/43167e4efdf92c129747cc39c26e62b0 to your computer and use it in GitHub Desktop.
collector-log-table
CREATE TABLE log (
client text,
type text,
day int,
date timestamp,
event_uuid uuid,
log_uuid uuid,
level text,
context text,
payload text,
PRIMARY KEY ((client, type, day), date, log_uuid)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment