Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Allow piping metrics into the conversion script #25

Closed

Conversation

npwalker
Copy link
Contributor

Prior to this commit, you could not pipe output into our conversion
script. The conversion script could only read files.

After this commit, you can pipe output into the script OR you can
read a file. You cannot pipe output in and read a file in the
same invocation of the conversion script.

@npwalker npwalker requested review from Sharpie and reidmv January 23, 2018 22:32
Copy link
Contributor

@reidmv reidmv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If it works, it looks fine to me.

Can you please provide a README update also, describing the new usage?

@npwalker npwalker force-pushed the allow_stdin_into_conversion branch 2 times, most recently from 2dc3847 to b877431 Compare January 24, 2018 16:10
Prior to this commit, you could not pipe output into our conversion
script.  The conversion script could only read files.

After this commit, you can pipe output into the script OR you can
read a file.  You cannot pipe output in and read a file in the
same invocation of the conversion script.
@npwalker npwalker force-pushed the allow_stdin_into_conversion branch from b877431 to 64760dc Compare January 24, 2018 19:55
Copy link
Contributor

@reidmv reidmv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If it works, it works!

We talked about this in the overlook. While I'm sure it's entirely possible to optimize the Ruby code somehow it's also just as probably not important to worry too much about it right now. 👍

@npwalker
Copy link
Contributor Author

@reidmv I'm not entirely sure that it does work for the ./view-in_grafana.sh use case. It seems to work passing in a file and piping STDIN into the script but I was having problems with running ./view-in-grafana.

I just need the STDIN part for now so I'm using these changes as my prototype over in pe_metric_curl_cron_jobs. I won't be able to dig into this for a few weeks probably.

@jarretlavallee
Copy link
Contributor

@npwalker Whats the status on this one?

@npwalker
Copy link
Contributor Author

@jarretlavallee same as the comment above... I was having problems with it working in view-in-grafana while it was working fine directly in puppet_metrics_collector

@@ -333,4 +345,18 @@ def influx_metrics(data, timestamp, parent_key = nil)
end
end

if ARGF.filename == '-'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is hanging because ruby always has the option to read from STDIN. So - will be present even if you are not piping anything in. It hangs in this repo because we do not pipe anything in. Perhaps we can gate reading from STDIN on a command line argument?

@jarretlavallee
Copy link
Contributor

With puppetlabs/puppetlabs-puppet_metrics_collector#19 merged, let's close this out. If you feel differently, please reopen.

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

Successfully merging this pull request may close these issues.

3 participants