Anders Håål

Results 29 comments of Anders Håål

@camrossi do you have any recommendations what would be good settings? Or do you think it should be defined on a query level?

@camrossi I have implemented what I believe is a solution to paging, but... Just setting `page` and `page-size` and iterate over the result until all pages are consumed is not...

Hi @camrossi - first the `queries=` query attribute should be set to the name of the "query" in the config file. A query is always of one of the types:...

@camrossi I think I found it. Tested with curl and it worked as expected, like you also said. The only different is that in aci-exporter I set the header `Content-Type:...

@camrossi related to the timeout issue. When the aci-exporter create the http client the default timeout is 0, which means no timeout. You can define it in the config.yml like:...

@camrossi Interesting findings and it helped me to understand the real problem. It had nothing to do with the header `Content-Type: application/json` was set or not. It was my header...

@camrossi good to hear that it worked, but I think we need to do some thinking for this large fabric use case. A scrape time higher than a minute is...

@camrossi I have implemented the parallel page fetch. Will be interesting to see how that effect the total processing time on your large cluster. On my small cluster I ran...

@camrossi I forgot to mention but you can disable parallel processing in the config: ``` httpclient: # Below are the default values pagesize: 1000 # If false paging will be...

@camrossi any feedback?