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

Multiple checks for one service #173

Closed
csghuser opened this issue May 18, 2015 · 12 comments
Closed

Multiple checks for one service #173

csghuser opened this issue May 18, 2015 · 12 comments
Assignees
Milestone

Comments

@csghuser
Copy link

Hi,
Sorry if this is obvious and I have missed it. Is there a way to add a service with multiple checks, rather than just one?

If so, what is the syntax?

Thanks!

@zarry
Copy link

zarry commented May 20, 2015

I was actually wondering about this as well.

@csghuser
Copy link
Author

Looks like this is the pull request where the feature was added to consul:
hashicorp/consul#591

I guess this is the section of the cookbook which would need updating?
https://github.com/johnbellone/consul-cookbook/blob/9029990b25c0eefb96674b98ffbc8f189d1a7dda/resources/check_def.rb

Also, in the readme, the syntax of a check is given as follows:

consul_service_def 'server1' do
  port 80
  tags ['http']
  check(
    interval: '10s',
    http: 'http://localhost:80'
  )
  notifies :reload, 'service[consul]'
end

Where as, I had to write it as :

consul_service_def 'server1' do
  port 80
  tags ['http']
  check = {
    interval: '10s',
    http: 'http://localhost:80'
  }
  notifies :reload, 'service[consul]'
end

Perhaps it needs defining as an array of hashes to define multiple checks.

@johnbellone johnbellone added this to the Road to 1.0.0 milestone Jun 16, 2015
@johnbellone johnbellone self-assigned this Jun 16, 2015
@zarry
Copy link

zarry commented Jun 24, 2015

@johnbellone Would you like some help implementing this on general road to 1.0.0 stuff? I have a need for this feature and don't mind doing some of the lifting. We have been getting a ton of mileage from all your leg work already and I don't mind helping out where I can.

Not sure what sort of timeline you are looking for but I can probably manage the time over the next couple weeks to knock it out.

@johnbellone
Copy link
Contributor

@zarry Yes that'd be great. Take a look at the develop branch. I need to test the HWRP thoroughly and document them.

@zarry
Copy link

zarry commented Jun 30, 2015

@johnbellone Are you changing some of the terminology from the current version/state to what is in the develop branch? Looks like consul_service is now used to actually define a consul instance and not represent a service in consul? Would consul_definition be where we define services? Looks not fully implemented(or just lacking documentation)?

What is the current state of the develop branch?

@zarry
Copy link

zarry commented Jun 30, 2015

Never mind, thats what I get for quickly skimming it. I see what is going on. I should have some time in the next day or two to start playing around with the development branch. If you could make sure anything you have locally is pushed that would be great.

Thanks!

@johnbellone
Copy link
Contributor

Right now I need to thoroughly test that branch, but otherwise I am waiting to get some time this week or next to document the definition HWRP. It would be a huge help to do that!

There are no commits locally. Once the README is written I am going to cut a patch release with remaining changes for 0.10 and merge in 1.0.

@zarry
Copy link

zarry commented Jul 2, 2015

Actually, as I dive in I still think consul_definition may have been missing some attributes. for_keeps is empty and we have no way of supplying a service or check definition json to the file system.

Regardless, I will get some documentation around it and make any changes I think should be there to make it work as I would expect. We can hash out any of the details or your idea of how it should look when I submit the PR. (To be fair I don't have a ton of experience with HWRP so I may be missing a common pattern)

@johnbellone
Copy link
Contributor

@zarry I'll tackle this during my train ride home tonight.

@zarry
Copy link

zarry commented Jul 10, 2015

@johnbellone Thanks, I spent a little time with it and I think I got a little lost with the HWRP. I don't think I fully groked your vision and I wasn't able to pick it up and finish it from there. If you can get a little more documentation I can do some testing for you.

@johnbellone
Copy link
Contributor

@zarry No worries. I really need to write up a lengthy blog post and more documentation here.

@lock
Copy link

lock bot commented Apr 25, 2020

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@lock lock bot locked as resolved and limited conversation to collaborators Apr 25, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants