Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using JSON.stringify instead of appending strings #18

Open
uschen opened this issue Apr 22, 2015 · 0 comments
Open

Using JSON.stringify instead of appending strings #18

uschen opened this issue Apr 22, 2015 · 0 comments

Comments

@uschen
Copy link

uschen commented Apr 22, 2015

payload += '{"index":{"_index":"'+statsdIndex+'","_type":"'+elasticTimerType+'"}}'+"\n";

||

var payload = [];
payload.push({
  index: '',
  _type: ''
});

var result = JSON.stringify(payload);

it might be easier to maintain.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants