me-ventures / microservice-toolkit

MIT License
3 stars 1 forks source link

export http values present in config to status endpoint #16

Closed EvaLok closed 7 years ago

EvaLok commented 7 years ago

proposed format:

{
                    service: {
                        name: 'test-service'

                        // proposed
                        httpName: 'some-http-name'
                    },

                    // proposed
                    httpReferences: [
                        'http://example.com',
                        'https://example-2.net'
                    ],                  

                    events: {
                        consume: [
                            {
                                namespace: 'test-ns-1',
                                topic: 'test-event-1',
                                shared: true,
                                queueName: 'test-queue-name.test-event1',
                                schema: ''
                            }
                        ],
                        publish: [
                            {
                                namespace: 'test-ns-2',
                                topic: 'test-event-2',
                                schema: ''
                            }
                        ]
                    }
                }
EvaLok commented 7 years ago

implemented in #17