This repository has been archived by the owner on Aug 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathhaproxy_exporter.yml
1587 lines (1587 loc) · 97.5 KB
/
haproxy_exporter.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
defaults:
port: 9101
tgroup: haproxy
software:
name: prometheus/haproxy_exporter
release: v0.13.0
prerelease: null
url: https://github.com/prometheus/haproxy_exporter
source: https://github.com/prometheus/haproxy_exporter.git
updated: '2021-11-26T20:25:17.370230'
master:
commit:
sha: 0e93985ade75e431ec7cba361022571c28f5a893
timestamp: '2021-11-26T10:06:30'
files: []
releases:
- name: v0.10.0
commit: null
timestamp: '2019-01-15T11:19:29'
prerelease: false
files:
- name: haproxy_exporter-0.10.0.darwin-386.tar.gz
commit: null
size: 5853098
sha256: sha256:eb8c7b3dfc565efcae143cd23712e4ebc6b07a57956aab333d4617086d13e614
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.darwin-386.tar.gz
- name: haproxy_exporter-0.10.0.darwin-amd64.tar.gz
commit: null
size: 6000055
sha256: sha256:8fdb8bb182586c57e5892816a02846bae0998916765d22bb81b2c444a3565862
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.darwin-amd64.tar.gz
- name: haproxy_exporter-0.10.0.dragonfly-amd64.tar.gz
commit: null
size: 5973216
sha256: sha256:35253003e9265df137297d71db494527860e3f8643a16417514439629543764b
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.dragonfly-amd64.tar.gz
- name: haproxy_exporter-0.10.0.freebsd-386.tar.gz
commit: null
size: 5798475
sha256: sha256:209b4722d4f4e7d5436e016b606148075900bba24e1c7ba7a02d363413e47b41
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.freebsd-386.tar.gz
- name: haproxy_exporter-0.10.0.freebsd-amd64.tar.gz
commit: null
size: 5986226
sha256: sha256:f32d158f9e3314828dc155a30a1f4c858876e1ea8ff543a4000afcbc7e923505
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.freebsd-amd64.tar.gz
- name: haproxy_exporter-0.10.0.freebsd-armv6.tar.gz
commit: null
size: 5539592
sha256: sha256:f0dba5e2e6b94ecf3eccf8c1d1cee07be0f9d107c70a10f7f2c7538654f773b2
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.freebsd-armv6.tar.gz
- name: haproxy_exporter-0.10.0.freebsd-armv7.tar.gz
commit: null
size: 5535560
sha256: sha256:5529e8e359fa11dd0c9f3bd59efe685bcad0658d0e7b20c91ed2d2521027383d
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.freebsd-armv7.tar.gz
- name: haproxy_exporter-0.10.0.linux-386.tar.gz
commit: null
size: 5791300
sha256: sha256:0a0599d8424369103bed41c3261202686ef55628b923d68e93b9815933882c4c
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-386.tar.gz
- name: haproxy_exporter-0.10.0.linux-amd64.tar.gz
commit: null
size: 5975717
sha256: sha256:08150728e281f813a8fcfff4b336f16dbfe4268a1c7510212c8cff2579b10468
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-amd64.tar.gz
- name: haproxy_exporter-0.10.0.linux-arm64.tar.gz
commit: null
size: 5540217
sha256: sha256:b801bb83edffb9decc6a4b754b2dc401d28d612d0811538889eba076d2f23b02
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-arm64.tar.gz
- name: haproxy_exporter-0.10.0.linux-armv5.tar.gz
commit: null
size: 5539934
sha256: sha256:f291f8c11bda6a9a53220cc44ea1a0bb849d86b91ffefef223673a8cf893304f
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-armv5.tar.gz
- name: haproxy_exporter-0.10.0.linux-armv6.tar.gz
commit: null
size: 5531054
sha256: sha256:7e4792dd629255cf33c659340c83ba1077ed20fbd4edc7fa0cf71b02de8f218a
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-armv6.tar.gz
- name: haproxy_exporter-0.10.0.linux-armv7.tar.gz
commit: null
size: 5528331
sha256: sha256:06a8376677afa7724d7cc2f1f08240c600726521c2625e93ef8a9dbfb412f773
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-armv7.tar.gz
- name: haproxy_exporter-0.10.0.linux-mips.tar.gz
commit: null
size: 5525725
sha256: sha256:27a7d54e3d2f0bda7161b706ef2fd256bd66822ec09a52e5451e64ce3f5d9db7
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-mips.tar.gz
- name: haproxy_exporter-0.10.0.linux-mips64.tar.gz
commit: null
size: 5634892
sha256: sha256:b9d796eb9720ce4447782e25ccdbfe358ac602846d47466cc79d820667b1e508
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-mips64.tar.gz
- name: haproxy_exporter-0.10.0.linux-mips64le.tar.gz
commit: null
size: 5453965
sha256: sha256:a7f164790200e9a1fca27489dadd85c34594e294a38c4cbdafc2a4250410b4f9
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-mips64le.tar.gz
- name: haproxy_exporter-0.10.0.linux-mipsle.tar.gz
commit: null
size: 5393774
sha256: sha256:66c078ef3a686bad9bacdf647f0a472260555d340e985c56426862d11d8718fb
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-mipsle.tar.gz
- name: haproxy_exporter-0.10.0.linux-ppc64.tar.gz
commit: null
size: 5696946
sha256: sha256:81498aef263b33674e2210fefa3ce133465e2424dd07d2e1f7df4276d2e27093
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-ppc64.tar.gz
- name: haproxy_exporter-0.10.0.linux-ppc64le.tar.gz
commit: null
size: 5545118
sha256: sha256:4102b42c6086db0e17da35738a384e93728081293e3e80e74a8c5765f8412d6c
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-ppc64le.tar.gz
- name: haproxy_exporter-0.10.0.linux-s390x.tar.gz
commit: null
size: 6049942
sha256: sha256:2c9df289ab251ec7e928bde2ad0dc6d525c7851f199ed078225b2e9722b81c45
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.linux-s390x.tar.gz
- name: haproxy_exporter-0.10.0.netbsd-386.tar.gz
commit: null
size: 5783290
sha256: sha256:97e54deb6c484b02804576dee7ece515ca087cde7b39ccdaf3970b7f2d37a397
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.netbsd-386.tar.gz
- name: haproxy_exporter-0.10.0.netbsd-amd64.tar.gz
commit: null
size: 5968967
sha256: sha256:984c9101b1010ba7c67afb88823187e834589858592d9099a616f8cedefad2b8
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.netbsd-amd64.tar.gz
- name: haproxy_exporter-0.10.0.netbsd-armv6.tar.gz
commit: null
size: 5529048
sha256: sha256:b36146757d734f95b91f861c0c17d6c54d3fad9d251f31f4067d4431d8fd8775
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.netbsd-armv6.tar.gz
- name: haproxy_exporter-0.10.0.netbsd-armv7.tar.gz
commit: null
size: 5527566
sha256: sha256:d12fbe89c6f93ee2c6faae8a0cdb3bf7202bb6b9c06dcd3c98b4cb69a48f0bff
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.netbsd-armv7.tar.gz
- name: haproxy_exporter-0.10.0.openbsd-386.tar.gz
commit: null
size: 5785653
sha256: sha256:185532d06aa0b5f5126836febe982db2ea7f3c2e13b24d0d4f70572fb25b904e
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.openbsd-386.tar.gz
- name: haproxy_exporter-0.10.0.openbsd-amd64.tar.gz
commit: null
size: 5971885
sha256: sha256:bc2b222f6a08232ef643cd6dcda3264f3bd7388a5bee25365cef137c7dea17e8
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.openbsd-amd64.tar.gz
- name: haproxy_exporter-0.10.0.openbsd-armv7.tar.gz
commit: null
size: 5527993
sha256: sha256:17339c782a833ec5da2dabc3b55a2e20723b7fd6eb844f9c93fe70705dee5790
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.openbsd-armv7.tar.gz
- name: haproxy_exporter-0.10.0.windows-386.tar.gz
commit: null
size: 5674980
sha256: sha256:1767c19a9f45a69f4c8b1c392954873e647071908cdc54be91b51dc77c759e0a
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.windows-386.tar.gz
- name: haproxy_exporter-0.10.0.windows-amd64.tar.gz
commit: null
size: 5884669
sha256: sha256:044118feb98b74eb921e27bd4b511732b553896c672c19bdd3418445dc030794
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/haproxy_exporter-0.10.0.windows-amd64.tar.gz
- name: sha256sums.txt
commit: null
size: 3183
sha256: sha256:72ba6cfdbe9d0c8790e2a54aa0c7e7f054f1320dba9a8335030dd541d71e3ab3
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.10.0/sha256sums.txt
- name: v0.9.0
commit: null
timestamp: '2018-01-23T18:48:20'
prerelease: false
files:
- name: haproxy_exporter-0.9.0.darwin-386.tar.gz
commit: null
size: 3504463
sha256: sha256:a43bb8337c1de49a3412fe59f95080404aca6e4797d442bde011efa63952a77b
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.darwin-386.tar.gz
- name: haproxy_exporter-0.9.0.darwin-amd64.tar.gz
commit: null
size: 3724045
sha256: sha256:9469ab9c1246c5fce1983825917fcd8837f219acdb038c033b7e77cc5442daa9
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.darwin-amd64.tar.gz
- name: haproxy_exporter-0.9.0.dragonfly-amd64.tar.gz
commit: null
size: 3687454
sha256: sha256:56a65dcfd39705e5b5660a03d2bd0eebcee2b6e3e95b07e36c01c46a5959847c
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.dragonfly-amd64.tar.gz
- name: haproxy_exporter-0.9.0.freebsd-386.tar.gz
commit: null
size: 3474269
sha256: sha256:14be028378ba770adea9102dafeba542689bb897b4530cd81253231ae530a18f
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.freebsd-386.tar.gz
- name: haproxy_exporter-0.9.0.freebsd-amd64.tar.gz
commit: null
size: 3692348
sha256: sha256:0863ee632237eafa3570974c37062fbf7bdcb9e892deeb5cc791f8bf2cff3b68
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.freebsd-amd64.tar.gz
- name: haproxy_exporter-0.9.0.freebsd-armv6.tar.gz
commit: null
size: 3391438
sha256: sha256:7bcd285ec4b776dc134943d428e37c91ab110d636a295095925177310cce3299
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.freebsd-armv6.tar.gz
- name: haproxy_exporter-0.9.0.freebsd-armv7.tar.gz
commit: null
size: 3388177
sha256: sha256:c4c18f7007970a16ffaf2a7dd18d4b0279b984eacd0a595ed78f68816452b1ff
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.freebsd-armv7.tar.gz
- name: haproxy_exporter-0.9.0.linux-386.tar.gz
commit: null
size: 3462898
sha256: sha256:c97680ecd1b3dae6b4652b82f178049ce9f5d70d9f2a190141b511ba5379e906
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.linux-386.tar.gz
- name: haproxy_exporter-0.9.0.linux-amd64.tar.gz
commit: null
size: 3682566
sha256: sha256:b0d1caaaf245d3d16432de9504575b3af1fec14b2206a468372a80843be001a0
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.linux-amd64.tar.gz
- name: haproxy_exporter-0.9.0.linux-arm64.tar.gz
commit: null
size: 3355415
sha256: sha256:f0714c8e17dd77b60ada62a48ca558f1d709487c4eff4e76e00ecef671a725e2
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.linux-arm64.tar.gz
- name: haproxy_exporter-0.9.0.linux-armv5.tar.gz
commit: null
size: 3396459
sha256: sha256:96ba4cb96c8079bcd3aa60e2f8527e0dc7919641219ed2d035e898ed4efbfc93
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.linux-armv5.tar.gz
- name: haproxy_exporter-0.9.0.linux-armv6.tar.gz
commit: null
size: 3376213
sha256: sha256:192d33cef86abe2d3447f18642767875bdd93a27bfc674a5f7ac7901abea0a59
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.linux-armv6.tar.gz
- name: haproxy_exporter-0.9.0.linux-armv7.tar.gz
commit: null
size: 3373529
sha256: sha256:3cb6ecb8a876240c47b20ee864bb8b8f3b3a4dc080d66a33404485e0b12fcec5
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.linux-armv7.tar.gz
- name: haproxy_exporter-0.9.0.linux-mips64.tar.gz
commit: null
size: 3370028
sha256: sha256:024182eb281acf765a88b59574a270ab97ab42e3c1783994590335f15cac984c
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.linux-mips64.tar.gz
- name: haproxy_exporter-0.9.0.linux-mips64le.tar.gz
commit: null
size: 3263575
sha256: sha256:babc7757d070a8cbff9372c68ec2a2c7e05caffca8fd4d25afd1c763318cf6c7
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.linux-mips64le.tar.gz
- name: haproxy_exporter-0.9.0.linux-ppc64.tar.gz
commit: null
size: 3424983
sha256: sha256:25e969749903262593d904da25e387a0fa5200d27217c6bd4d98a62bf8bd7832
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.linux-ppc64.tar.gz
- name: haproxy_exporter-0.9.0.linux-ppc64le.tar.gz
commit: null
size: 3343373
sha256: sha256:240b5e13920ee9dc57b7255f47b85925af320dc26ad5cd1a65e60af02c28add6
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.linux-ppc64le.tar.gz
- name: haproxy_exporter-0.9.0.netbsd-386.tar.gz
commit: null
size: 3468254
sha256: sha256:f7b451cef3b3728cde7ab4c49ff7231885e44c9fba78be08d697abe523c82872
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.netbsd-386.tar.gz
- name: haproxy_exporter-0.9.0.netbsd-amd64.tar.gz
commit: null
size: 3685132
sha256: sha256:4be5b0b3ff35a818c95b7f9a5eb812506219898c38290d2130533419072b1d93
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.netbsd-amd64.tar.gz
- name: haproxy_exporter-0.9.0.netbsd-armv6.tar.gz
commit: null
size: 3388045
sha256: sha256:d9eb657402f4e1315c4ad26509972959bc881347b5255ccc49d888197533735b
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.netbsd-armv6.tar.gz
- name: haproxy_exporter-0.9.0.netbsd-armv7.tar.gz
commit: null
size: 3386099
sha256: sha256:e046d82a3f9e02e5bc74f8bd054ee085173679129f07b78d59f7a4fd30e55e3e
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.netbsd-armv7.tar.gz
- name: haproxy_exporter-0.9.0.openbsd-386.tar.gz
commit: null
size: 3473299
sha256: sha256:c99fa9088bab337588719071539d6b5f6a7123ba6d801c26ecf3323d21b466c4
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.openbsd-386.tar.gz
- name: haproxy_exporter-0.9.0.openbsd-amd64.tar.gz
commit: null
size: 3690109
sha256: sha256:13a60c30b948b5b28851f7ed8232dc1b5083d2bcfdb5a1e9daec9214ecabab08
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.openbsd-amd64.tar.gz
- name: haproxy_exporter-0.9.0.openbsd-armv7.tar.gz
commit: null
size: 3389183
sha256: sha256:75d7e11a5c1d2968d1f38abafa7c6c9c96f1600b23c8efdb13f0e4e3d8286a27
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.openbsd-armv7.tar.gz
- name: haproxy_exporter-0.9.0.windows-386.tar.gz
commit: null
size: 3430465
sha256: sha256:9f945cf47472988f3780341bb7d08ea1ec9663d6fb9b5ca60b44a0c7b9add89a
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.windows-386.tar.gz
- name: haproxy_exporter-0.9.0.windows-amd64.tar.gz
commit: null
size: 3649861
sha256: sha256:dcb62ed2fff8d3a77f6cef3f4e43ea10ce41793fc8c2a1fba2d9379c16f90886
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/haproxy_exporter-0.9.0.windows-amd64.tar.gz
- name: sha256sums.txt
commit: null
size: 2830
sha256: sha256:bdce70e8699ca216ed6c17f06f9bbd84f61454e0911f84c0938e98513a66ed50
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.9.0/sha256sums.txt
- name: v0.8.0
commit: null
timestamp: '2017-08-24T21:50:47'
prerelease: false
files:
- name: haproxy_exporter-0.8.0.darwin-386.tar.gz
commit: null
size: 3408812
sha256: sha256:0b266c43656d6e8a655e2e8e0f55e7268204b582ed7cc64d4c5d1eb0c4115f0f
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.darwin-386.tar.gz
- name: haproxy_exporter-0.8.0.darwin-amd64.tar.gz
commit: null
size: 3627395
sha256: sha256:a22deac0a116034deb4858092024f6ebd072183df609072d48b88dc9e3815b26
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.darwin-amd64.tar.gz
- name: haproxy_exporter-0.8.0.dragonfly-amd64.tar.gz
commit: null
size: 3596697
sha256: sha256:44fb34dd7ad725f36df7e25f5aaf5592453dcda1a11123f46f8938bdf58e7d9a
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.dragonfly-amd64.tar.gz
- name: haproxy_exporter-0.8.0.freebsd-386.tar.gz
commit: null
size: 3382031
sha256: sha256:e32d99d2153991a3520f98c2f0cdccc0f501bd9203ca06686bea06d853eb341b
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.freebsd-386.tar.gz
- name: haproxy_exporter-0.8.0.freebsd-amd64.tar.gz
commit: null
size: 3600729
sha256: sha256:f06ef0240f38d1d9de6dee4ea89b2d05a96cb04b28b9042622f512e8a75e7d6a
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.freebsd-amd64.tar.gz
- name: haproxy_exporter-0.8.0.freebsd-armv6.tar.gz
commit: null
size: 3353501
sha256: sha256:af008243cc9add593f04d28951e49b4705754039fbaefc90defa8a8ec315c447
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.freebsd-armv6.tar.gz
- name: haproxy_exporter-0.8.0.freebsd-armv7.tar.gz
commit: null
size: 3353204
sha256: sha256:fd4b132785c9612f0c2bbc7dc456603367068ae2bf5fc002637ee029854886be
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.freebsd-armv7.tar.gz
- name: haproxy_exporter-0.8.0.linux-386.tar.gz
commit: null
size: 3375289
sha256: sha256:410faf45828b98fddf1e3635f5afe3b0a23724ba05d8151d6833cdbfa86390a7
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.linux-386.tar.gz
- name: haproxy_exporter-0.8.0.linux-amd64.tar.gz
commit: null
size: 3595674
sha256: sha256:2b1da4218fc5a1531ed17663ba5656c6bb5ce3db0ad6c2bdd6781d7f1b545816
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.linux-amd64.tar.gz
- name: haproxy_exporter-0.8.0.linux-arm64.tar.gz
commit: null
size: 3352244
sha256: sha256:22bc18b52177eb11325b2a62db326fa55c2a41b5b651801ee8db47930d21c418
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.linux-arm64.tar.gz
- name: haproxy_exporter-0.8.0.linux-armv5.tar.gz
commit: null
size: 3363795
sha256: sha256:2398b7e3ec901cee80c1569f7841055856c0525a7826bc782d5ec76c75c8345d
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.linux-armv5.tar.gz
- name: haproxy_exporter-0.8.0.linux-armv6.tar.gz
commit: null
size: 3342906
sha256: sha256:950b81e3964e042556fb5f0604ab287ccbbb108d70ab6dfded1ecc02804d0d8c
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.linux-armv6.tar.gz
- name: haproxy_exporter-0.8.0.linux-armv7.tar.gz
commit: null
size: 3341607
sha256: sha256:450db5d5dbe04d9ae0936bb3e2a3ffb62dff37bb781d49ed9f815462ffa78dc4
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.linux-armv7.tar.gz
- name: haproxy_exporter-0.8.0.linux-mips64.tar.gz
commit: null
size: 3336172
sha256: sha256:d2db89a31f4fa505ecec145698606d72a6549014540b444de63c10e78dab1452
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.linux-mips64.tar.gz
- name: haproxy_exporter-0.8.0.linux-mips64le.tar.gz
commit: null
size: 3233324
sha256: sha256:cfef8949a10e81cee91c8017ccafae4d39e1aa15ca7c2376a7f98f0da1d9cbef
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.linux-mips64le.tar.gz
- name: haproxy_exporter-0.8.0.linux-ppc64.tar.gz
commit: null
size: 3422193
sha256: sha256:775a624fdeaef381781df758b996c5c8ad9647db671e631b60401c2f4cf3d9a0
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.linux-ppc64.tar.gz
- name: haproxy_exporter-0.8.0.linux-ppc64le.tar.gz
commit: null
size: 3333034
sha256: sha256:84cb9381391895d3d428e5924fe47dc07dc5af695c25a8ccd5c78bcdf625fadb
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.linux-ppc64le.tar.gz
- name: haproxy_exporter-0.8.0.netbsd-386.tar.gz
commit: null
size: 3378305
sha256: sha256:2de3f521a36c383c655fe4f33156b8512434c296ab714def29b72c13a3b80b22
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.netbsd-386.tar.gz
- name: haproxy_exporter-0.8.0.netbsd-amd64.tar.gz
commit: null
size: 3595599
sha256: sha256:f4b93ae76fa28dd90dd883ffafcd3491f49b93e4cc68169c1207703138ea7cab
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.netbsd-amd64.tar.gz
- name: haproxy_exporter-0.8.0.netbsd-armv6.tar.gz
commit: null
size: 3350803
sha256: sha256:d224deffa4a7085cc50f602ee2863f612bb73467097c1daa4c3789c98f81788c
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.netbsd-armv6.tar.gz
- name: haproxy_exporter-0.8.0.netbsd-armv7.tar.gz
commit: null
size: 3349229
sha256: sha256:35c6f319eaea8ad5dbccf05c22bd2a0d68a0f2a28175eed4e233726af755b023
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.netbsd-armv7.tar.gz
- name: haproxy_exporter-0.8.0.openbsd-386.tar.gz
commit: null
size: 3381197
sha256: sha256:c6db3be29239d6dbf4fa359af04bd9356a829c6732aaf168f312a71be450182e
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.openbsd-386.tar.gz
- name: haproxy_exporter-0.8.0.openbsd-amd64.tar.gz
commit: null
size: 3598413
sha256: sha256:94e38ca37bb6c33bd6a72a787d40dc11023a31298d3496525ee33bdde46374e6
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.openbsd-amd64.tar.gz
- name: haproxy_exporter-0.8.0.openbsd-armv7.tar.gz
commit: null
size: 3349435
sha256: sha256:c9e5794a74bdfb539a63a913edec6933e4ab06630fc53c7704441b52aad34ca5
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.openbsd-armv7.tar.gz
- name: haproxy_exporter-0.8.0.windows-386.tar.gz
commit: null
size: 3343956
sha256: sha256:89c6f5707dc10c76dbff3c35a221d3483998cf270c973f2dbbf28de876a9d808
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.windows-386.tar.gz
- name: haproxy_exporter-0.8.0.windows-amd64.tar.gz
commit: null
size: 3564584
sha256: sha256:1971c354fd8830994e8d6764f42f7ed35973583bac9364719da21449810579c3
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/haproxy_exporter-0.8.0.windows-amd64.tar.gz
- name: sha256sums.txt
commit: null
size: 2830
sha256: sha256:0c7c9c5075be45088528b85bb9c00f76679bcf9a9c586ac34d7a08656a106f63
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.8.0/sha256sums.txt
- name: v0.7.1
commit: null
timestamp: '2017-05-25T07:12:19'
prerelease: false
files:
- name: haproxy_exporter-0.7.1.darwin-386.tar.gz
commit: null
size: 2971761
sha256: sha256:58fefcd46e0c521ec63ee7a9c82470d0cfa1421eab0e8e64ed1d8432ce1e5108
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.darwin-386.tar.gz
- name: haproxy_exporter-0.7.1.darwin-amd64.tar.gz
commit: null
size: 3161978
sha256: sha256:c9c39dd7fc9cecade50c57ddd3047c8620d39c5f8afd1d1f48660ae9ccc579b3
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.darwin-amd64.tar.gz
- name: haproxy_exporter-0.7.1.dragonfly-amd64.tar.gz
commit: null
size: 3143391
sha256: sha256:88c6ae4b7af7b9dff1f7f48b3e32deedc0bdc42060628b094f9ff543c4d65af7
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.dragonfly-amd64.tar.gz
- name: haproxy_exporter-0.7.1.freebsd-386.tar.gz
commit: null
size: 2960317
sha256: sha256:45af142ae4ece78267e1bcd8c9d4fcee079461d1ae5dc09240c721f3a1266456
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.freebsd-386.tar.gz
- name: haproxy_exporter-0.7.1.freebsd-amd64.tar.gz
commit: null
size: 3149628
sha256: sha256:1eb373e43ca6ef64402e97c47f7d2d6a6dcaf01fece04c6c3c14228184b9ca54
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.freebsd-amd64.tar.gz
- name: haproxy_exporter-0.7.1.freebsd-armv5.tar.gz
commit: null
size: 2867012
sha256: sha256:bba96be687e60583654aa17d36898cab9686d977e5f67674eacded1d7604221c
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.freebsd-armv5.tar.gz
- name: haproxy_exporter-0.7.1.freebsd-armv6.tar.gz
commit: null
size: 2845521
sha256: sha256:c1e06efc114e6896eda3f1d04f18202934c33a7defbfc13fbdd5554aabccad56
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.freebsd-armv6.tar.gz
- name: haproxy_exporter-0.7.1.freebsd-armv7.tar.gz
commit: null
size: 2844513
sha256: sha256:618e607b19ee158d3c821e9619adf0a1015a4759a4c2979196960fb8d82172f3
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.freebsd-armv7.tar.gz
- name: haproxy_exporter-0.7.1.linux-386.tar.gz
commit: null
size: 2953047
sha256: sha256:d6fd326782405162ad763578ce3f8227a0cb9838f38039b4a26c2e6de5927331
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.linux-386.tar.gz
- name: haproxy_exporter-0.7.1.linux-amd64.tar.gz
commit: null
size: 3141044
sha256: sha256:25426aafa337e717e04af1d0de15ea8848a63342a609019a539df3e937699f1a
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.linux-amd64.tar.gz
- name: haproxy_exporter-0.7.1.linux-arm64.tar.gz
commit: null
size: 2886378
sha256: sha256:313423a1cd15baf8e71ae52245e86dce77feb06a6d60b3e545f24c22b5cd1ce4
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.linux-arm64.tar.gz
- name: haproxy_exporter-0.7.1.linux-armv5.tar.gz
commit: null
size: 2855607
sha256: sha256:c1ff27e6f4ff846a61d43a131770a034b582f9aedcabd6127a1da63298a908d1
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.linux-armv5.tar.gz
- name: haproxy_exporter-0.7.1.linux-armv6.tar.gz
commit: null
size: 2835140
sha256: sha256:f63bc9301e1eda34200ba803fa4ae8b9cb92c666ec864a80524c928786adae9b
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.linux-armv6.tar.gz
- name: haproxy_exporter-0.7.1.linux-armv7.tar.gz
commit: null
size: 2833360
sha256: sha256:8238211b3ded7824e232ef9001091fb083b07a0dd5021bcc3bd13094ee645ad9
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.linux-armv7.tar.gz
- name: haproxy_exporter-0.7.1.linux-mips64.tar.gz
commit: null
size: 2879795
sha256: sha256:1156ed61241854fd8fe9d1fb44a75534ffcf8d3c491b16b78f728f5fcf9d8150
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.linux-mips64.tar.gz
- name: haproxy_exporter-0.7.1.linux-mips64le.tar.gz
commit: null
size: 2782034
sha256: sha256:b947043a49dc388a20baba92c58f4eb180a9ee6b9d2ca782bc1de98a71e60922
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.linux-mips64le.tar.gz
- name: haproxy_exporter-0.7.1.linux-ppc64.tar.gz
commit: null
size: 2965815
sha256: sha256:78dc2c7cd03770428e5943e29286fd9429cfb36af09dc9cbd2bed4e90bdbe84c
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.linux-ppc64.tar.gz
- name: haproxy_exporter-0.7.1.linux-ppc64le.tar.gz
commit: null
size: 2892576
sha256: sha256:44dfd35afdc71948b52eab7822f322f9f5faf3d9b31232ae6a74285a929ae903
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.linux-ppc64le.tar.gz
- name: haproxy_exporter-0.7.1.netbsd-386.tar.gz
commit: null
size: 2955089
sha256: sha256:23e714692095346ba597cea0213817ffac706a882bcc1359837394a7a2e32dbb
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.netbsd-386.tar.gz
- name: haproxy_exporter-0.7.1.netbsd-amd64.tar.gz
commit: null
size: 3141945
sha256: sha256:68ee6e186c80310db1e14b0406c7ce30f26b53eb28bfb5c5694e833a1d8c6585
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.netbsd-amd64.tar.gz
- name: haproxy_exporter-0.7.1.netbsd-armv5.tar.gz
commit: null
size: 2861248
sha256: sha256:f090c0091d2fc1feb15c7280a4a2bbab518efbccc1ba7e20d2d2e3465d6e0f56
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.netbsd-armv5.tar.gz
- name: haproxy_exporter-0.7.1.netbsd-armv6.tar.gz
commit: null
size: 2842454
sha256: sha256:a67f709e89d173b1530970cd8d624b987b526cf0cffdfeccb6f60a9c1eca1940
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.netbsd-armv6.tar.gz
- name: haproxy_exporter-0.7.1.netbsd-armv7.tar.gz
commit: null
size: 2840270
sha256: sha256:c4f54dae0cfa6f9fea83fb0c35bdd41f99ca7c2c8b2a247bfa160793340982c8
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.netbsd-armv7.tar.gz
- name: haproxy_exporter-0.7.1.openbsd-386.tar.gz
commit: null
size: 2957523
sha256: sha256:facb5df1c83a4a3d997d9d26de7f3d13f5773290d57fdcc92db38eb93b253f20
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.openbsd-386.tar.gz
- name: haproxy_exporter-0.7.1.openbsd-amd64.tar.gz
commit: null
size: 3147185
sha256: sha256:6f9907d89ce057d29cd7f6f9497262548765ac511053d886f7b044655e582096
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.openbsd-amd64.tar.gz
- name: haproxy_exporter-0.7.1.openbsd-armv5.tar.gz
commit: null
size: 2863956
sha256: sha256:86c3c7b9ee0642284a5f236856995caf645580a4ac042bb086124671de4450e9
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.openbsd-armv5.tar.gz
- name: haproxy_exporter-0.7.1.openbsd-armv6.tar.gz
commit: null
size: 2844141
sha256: sha256:3320609b48e1ecbd76584ff21a466d7d1259b5a38926d7e70d9e692e25dbd455
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.openbsd-armv6.tar.gz
- name: haproxy_exporter-0.7.1.openbsd-armv7.tar.gz
commit: null
size: 2843111
sha256: sha256:11f109bfb752fe991a7dd0c2ee171f7eed493e72a4cbbe6434c06e1a7c1b19b0
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.openbsd-armv7.tar.gz
- name: haproxy_exporter-0.7.1.windows-386.tar.gz
commit: null
size: 2907046
sha256: sha256:79142ca0de1499c95e65bce8d83c63ade58500dbb730861366ceb6f604488821
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.windows-386.tar.gz
- name: haproxy_exporter-0.7.1.windows-amd64.tar.gz
commit: null
size: 3100513
sha256: sha256:2b374c399cc5f76a8021acc65359905a5668d1ef8d86b14692860aa407dda216
url: https://github.com/prometheus/haproxy_exporter/releases/download/v0.7.1/haproxy_exporter-0.7.1.windows-amd64.tar.gz
- name: 0.7.0
commit: null
timestamp: '2016-06-08T22:58:05'
prerelease: false
files:
- name: haproxy_exporter-0.7.0.darwin-386.tar.gz
commit: null
size: 3095754
sha256: sha256:81a01b547df70c1bbaaaf56e4245506f9e510beb841e115abb8f590d3a86e3a4
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.darwin-386.tar.gz
- name: haproxy_exporter-0.7.0.darwin-amd64.tar.gz
commit: null
size: 3311875
sha256: sha256:c7045ef6c74322b75f8a0d9d86c73d2e90ef962ed4d1edfca811a6107e1b02e7
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.darwin-amd64.tar.gz
- name: haproxy_exporter-0.7.0.dragonfly-amd64.tar.gz
commit: null
size: 3323230
sha256: sha256:0dcc59b12f0d1e7a1e1bf94eafdd63e6db3fd23c15c6193521c1e254142a9bac
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.dragonfly-amd64.tar.gz
- name: haproxy_exporter-0.7.0.freebsd-386.tar.gz
commit: null
size: 3110714
sha256: sha256:ef53695bd3007784a5fb84859330818c0e2fe0cc3d21c88a165253b1a518c62e
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.freebsd-386.tar.gz
- name: haproxy_exporter-0.7.0.freebsd-amd64.tar.gz
commit: null
size: 3331022
sha256: sha256:2f8231a3adecf1104f2e5e6ec6b50c74b2d4f80c5002ea30f6cc2496f8b04ab0
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.freebsd-amd64.tar.gz
- name: haproxy_exporter-0.7.0.freebsd-armv5.tar.gz
commit: null
size: 3018845
sha256: sha256:99e16d99b8a37bda12d0cc2fe2fb5d157e0edfa38114d7d900bd88d1846d2ce7
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.freebsd-armv5.tar.gz
- name: haproxy_exporter-0.7.0.freebsd-armv6.tar.gz
commit: null
size: 2997859
sha256: sha256:e9d164d40069fbe22b7f780839c7a304d7387f0053a26cf9449448aa6da0c957
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.freebsd-armv6.tar.gz
- name: haproxy_exporter-0.7.0.freebsd-armv7.tar.gz
commit: null
size: 2997561
sha256: sha256:c19d3a3bdbddb1d3e7593674275e8b94a10fd7755aaff4fc3ae22c739f81b5bb
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.freebsd-armv7.tar.gz
- name: haproxy_exporter-0.7.0.linux-386.tar.gz
commit: null
size: 3111330
sha256: sha256:f0cf4ffc45c0006848893ae552846e699ad75b173397c22e37fb3a63753cce79
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.linux-386.tar.gz
- name: haproxy_exporter-0.7.0.linux-amd64.tar.gz
commit: null
size: 3331578
sha256: sha256:63c787f64128d97d80f9832a7f721383a9d32c3c6bd0724cc3b19cdae40240a8
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.linux-amd64.tar.gz
- name: haproxy_exporter-0.7.0.linux-arm64.tar.gz
commit: null
size: 3061543
sha256: sha256:d054ff13f0bd1e13e219250f1b80836d48c8efabf8e48267e82bddefeefd33d8
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.linux-arm64.tar.gz
- name: haproxy_exporter-0.7.0.linux-armv5.tar.gz
commit: null
size: 3014176
sha256: sha256:162a3f53ab4cd82202e33541892d521d408524656bf88170e7e00b3a9764ed53
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.linux-armv5.tar.gz
- name: haproxy_exporter-0.7.0.linux-armv6.tar.gz
commit: null
size: 2997046
sha256: sha256:80a64d8b88ad5f24d103ac135e083d0d704c63522433545a2e1d8f7127ac925c
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.linux-armv6.tar.gz
- name: haproxy_exporter-0.7.0.linux-armv7.tar.gz
commit: null
size: 2994369
sha256: sha256:3a93fdd46ada0ccefeb3d6bb78c54dd3b671dcf30bf33c8179127725f384f393
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.linux-armv7.tar.gz
- name: haproxy_exporter-0.7.0.linux-mips64.tar.gz
commit: null
size: 3073115
sha256: sha256:1f17c6c8a867af4946f45aae52b0b03c48c95ee95562a8062d1bca9a0b47456d
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.linux-mips64.tar.gz
- name: haproxy_exporter-0.7.0.linux-mips64le.tar.gz
commit: null
size: 2943191
sha256: sha256:29db20b85e49f205ed215122e343c125d8bbc672f38b0ed5c017bc52baebf1f4
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.linux-mips64le.tar.gz
- name: haproxy_exporter-0.7.0.linux-ppc64.tar.gz
commit: null
size: 3167644
sha256: sha256:011c5bfcba677e8c3843f7ebeed2df246d24d7ab40ac78b7870bbbcd4624b846
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.linux-ppc64.tar.gz
- name: haproxy_exporter-0.7.0.linux-ppc64le.tar.gz
commit: null
size: 3064490
sha256: sha256:e001279306a0ddfb1f06ec4c438b1eebb0666ef7b814accc0de6718b4ed51b56
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.linux-ppc64le.tar.gz
- name: haproxy_exporter-0.7.0.netbsd-386.tar.gz
commit: null
size: 3101884
sha256: sha256:8421cf839a5146d8f4e182f7a8964e7f5dfc304f6561c912a2e8d231680ae089
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.netbsd-386.tar.gz
- name: haproxy_exporter-0.7.0.netbsd-amd64.tar.gz
commit: null
size: 3319691
sha256: sha256:40591006b5c01e44deca17e9b6298acd05a057352b1349bc4176767d1816e391
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.netbsd-amd64.tar.gz
- name: haproxy_exporter-0.7.0.netbsd-armv5.tar.gz
commit: null
size: 3011425
sha256: sha256:955d12d33caec30c56c950ccf56c57fdde91bdb39670e7c5bcb6cdff7b937ecf
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.netbsd-armv5.tar.gz
- name: haproxy_exporter-0.7.0.netbsd-armv6.tar.gz
commit: null
size: 2991515
sha256: sha256:1eac377a6962417249f180e53ae851ac458870ea27d08ff4aeddbd66f58dcff0
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.netbsd-armv6.tar.gz
- name: haproxy_exporter-0.7.0.netbsd-armv7.tar.gz
commit: null
size: 2990610
sha256: sha256:6dc5d37ef10a895bcaa5a8e5c42144581dd4a9662bdd1e3ebe99c5c65f993832
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.netbsd-armv7.tar.gz
- name: haproxy_exporter-0.7.0.openbsd-386.tar.gz
commit: null
size: 3105543
sha256: sha256:96199ee336787e22f9fcf32dbdd1df2bf8d284943befe1c328a66ad77778de94
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.openbsd-386.tar.gz
- name: haproxy_exporter-0.7.0.openbsd-amd64.tar.gz
commit: null
size: 3323920
sha256: sha256:b87493c931b6a4273694db1cbb959c8e3030ee331144e088926d21dc7ae4393e
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.openbsd-amd64.tar.gz
- name: haproxy_exporter-0.7.0.openbsd-armv5.tar.gz
commit: null
size: 3013943
sha256: sha256:885ed457e32aef52315876bcb430f9fd1a0a80800de5301969564b31bd9c88cc
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.openbsd-armv5.tar.gz
- name: haproxy_exporter-0.7.0.openbsd-armv6.tar.gz
commit: null
size: 2993361
sha256: sha256:289d648d62deaaf6db3bfbbe3a547d410101e3ae93e410e962515a4b9ff2752e
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.openbsd-armv6.tar.gz
- name: haproxy_exporter-0.7.0.openbsd-armv7.tar.gz
commit: null
size: 2992453
sha256: sha256:2034278541eae4cd22b60ed64634c0d7d3af6e8e216cc059838366672ffd905e
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.openbsd-armv7.tar.gz
- name: haproxy_exporter-0.7.0.windows-386.tar.gz
commit: null
size: 3079337
sha256: sha256:cff7acdad27a1f7438e641c9688c25eeb1985fde74dc879ecb348aec91c454b9
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.windows-386.tar.gz
- name: haproxy_exporter-0.7.0.windows-amd64.tar.gz
commit: null
size: 3306516
sha256: sha256:32946d366ee43e9c75af9e92ac84a20722fbd135b77a731b972a525739e7a665
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.7.0/haproxy_exporter-0.7.0.windows-amd64.tar.gz
- name: 0.6.0
commit: null
timestamp: '2016-05-13T01:48:24'
prerelease: false
files:
- name: haproxy_exporter-0.6.0.darwin-386.tar.gz
commit: null
size: 3092287
sha256: sha256:b46de40a53ba77f5c926e12847cafba73050cb9a3e6bf9be0cf878224b329947
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.darwin-386.tar.gz
- name: haproxy_exporter-0.6.0.darwin-amd64.tar.gz
commit: null
size: 3309949
sha256: sha256:1c56a7b7c4aa4560b6d752cc4e47b5d925ca8ae2638525b0c2a920641395a79c
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.darwin-amd64.tar.gz
- name: haproxy_exporter-0.6.0.dragonfly-amd64.tar.gz
commit: null
size: 3320589
sha256: sha256:34278d8c5865d1bbf58e72a7fdbc536ca02eb28ef076b5dc57b8baa64761359a
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.dragonfly-amd64.tar.gz
- name: haproxy_exporter-0.6.0.freebsd-386.tar.gz
commit: null
size: 3106951
sha256: sha256:a64b70ec7b4342899c82e4bbe72e5545a6c23a5b8e5b7c9ffd59e036c089d0c7
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.freebsd-386.tar.gz
- name: haproxy_exporter-0.6.0.freebsd-amd64.tar.gz
commit: null
size: 3327301
sha256: sha256:628d75df29c14e28c88e55a87b9607dd370f99cbba0ba4a27b07ff0be115914f
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.freebsd-amd64.tar.gz
- name: haproxy_exporter-0.6.0.freebsd-armv5.tar.gz
commit: null
size: 3014473
sha256: sha256:851a9ed5f044b5390ef169594afbb00c6357325e05c8718048801a5146634c30
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.freebsd-armv5.tar.gz
- name: haproxy_exporter-0.6.0.freebsd-armv6.tar.gz
commit: null
size: 2993872
sha256: sha256:61e0d3b4952e21101b80b078c905db3b3f757c3ab420a107e49d52d82d554cdc
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.freebsd-armv6.tar.gz
- name: haproxy_exporter-0.6.0.freebsd-armv7.tar.gz
commit: null
size: 2994226
sha256: sha256:c77a74c45142f507c914063fcffd26fadd54bc648c0631f80a41367364d0b4b3
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.freebsd-armv7.tar.gz
- name: haproxy_exporter-0.6.0.linux-386.tar.gz
commit: null
size: 3107567
sha256: sha256:cebe9f213a820a7603fa642ab7c31e771f96afc4725dcd8293cd95daee91b97d
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.linux-386.tar.gz
- name: haproxy_exporter-0.6.0.linux-amd64.tar.gz
commit: null
size: 3330394
sha256: sha256:a80c28b784ea50205c393c246d9c3e526fb13ec05996f0ba42dd2c1ba1429e31
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.linux-amd64.tar.gz
- name: haproxy_exporter-0.6.0.linux-arm64.tar.gz
commit: null
size: 3060177
sha256: sha256:444c8b24f5d2edfa0c2c31d76044103d83452fd32c50b55076d5d1adf5871ed1
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.linux-arm64.tar.gz
- name: haproxy_exporter-0.6.0.linux-armv5.tar.gz
commit: null
size: 3011791
sha256: sha256:c231e76715fab4377b00597332962787ee9ef3028165338d645b14962239296c
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.linux-armv5.tar.gz
- name: haproxy_exporter-0.6.0.linux-armv6.tar.gz
commit: null
size: 2992702
sha256: sha256:3f83cba778163cbd0f20f16039c02249d88da85cd1eff342a15b416323486a81
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.linux-armv6.tar.gz
- name: haproxy_exporter-0.6.0.linux-armv7.tar.gz
commit: null
size: 2991675
sha256: sha256:e2e483ef0f808d3cf7bf83f92c7d8acdecf69bc46d56eb1e3914290f49809fe2
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.linux-armv7.tar.gz
- name: haproxy_exporter-0.6.0.linux-mips64.tar.gz
commit: null
size: 3071064
sha256: sha256:65537e3bcfdb9b5f04f753b9f118a57cf2ac3c36e095bd85727caf89cffb4e12
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.linux-mips64.tar.gz
- name: haproxy_exporter-0.6.0.linux-mips64le.tar.gz
commit: null
size: 2940227
sha256: sha256:4a4f9b2d20d4de59d190e634729e294b9d55d6fafce6f15099f511f1a7a2ff9c
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.linux-mips64le.tar.gz
- name: haproxy_exporter-0.6.0.linux-ppc64.tar.gz
commit: null
size: 3165686
sha256: sha256:394a2018e3db4fea28dfc7cb3f1450900d161c1818f5052c5e5244ed97861295
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.linux-ppc64.tar.gz
- name: haproxy_exporter-0.6.0.linux-ppc64le.tar.gz
commit: null
size: 3062115
sha256: sha256:8226a5ee32fe488c4792910bb64ad92c7c9fb53012e62dd24d47dea868e144b9
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.linux-ppc64le.tar.gz
- name: haproxy_exporter-0.6.0.netbsd-386.tar.gz
commit: null
size: 3099305
sha256: sha256:ad75d2056050529fd94ef87ab41844de7f6996fe3048449b5034516f6de4fbd9
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.netbsd-386.tar.gz
- name: haproxy_exporter-0.6.0.netbsd-amd64.tar.gz
commit: null
size: 3317443
sha256: sha256:8084129a59f8a96c31e203b1d36a508a64325f452fb92f3317a1f9d64220fc75
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.netbsd-amd64.tar.gz
- name: haproxy_exporter-0.6.0.netbsd-armv5.tar.gz
commit: null
size: 3009277
sha256: sha256:54ae6b645afebf3018471228d714cc418ba2b5e9836b58a3f5af4b7b5fc4156d
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.netbsd-armv5.tar.gz
- name: haproxy_exporter-0.6.0.netbsd-armv6.tar.gz
commit: null
size: 2989432
sha256: sha256:95c5740eb85c22e12929d4324e7a1f6e347c98b96e8769f229eb72118c5048a0
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.netbsd-armv6.tar.gz
- name: haproxy_exporter-0.6.0.netbsd-armv7.tar.gz
commit: null
size: 2987960
sha256: sha256:d569b4bd645f852ae5c3ab8f48c3fc1b25a494c5e2e1f6fe3480f4c8759e7073
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.netbsd-armv7.tar.gz
- name: haproxy_exporter-0.6.0.openbsd-386.tar.gz
commit: null
size: 3100069
sha256: sha256:01cfa0e1d36f1cadb0a74b5935c6f8ef16d3fa069a6bc50c7ac8465da3b1a788
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.openbsd-386.tar.gz
- name: haproxy_exporter-0.6.0.openbsd-amd64.tar.gz
commit: null
size: 3320928
sha256: sha256:d68e2e04d8e4af42325f1d239be81d21647111772bd40c51b27fc0d07ef4bfd2
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.openbsd-amd64.tar.gz
- name: haproxy_exporter-0.6.0.openbsd-armv5.tar.gz
commit: null
size: 3011303
sha256: sha256:ef0e545d7baaedcd5073347d0d86398cf2cc5d1b0b9e187997a4fc430b11e0e7
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.openbsd-armv5.tar.gz
- name: haproxy_exporter-0.6.0.openbsd-armv6.tar.gz
commit: null
size: 2991527
sha256: sha256:ba7291ae422539971e43b7c0ac819b98a046c25eb907e33698cb671aff886c36
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.openbsd-armv6.tar.gz
- name: haproxy_exporter-0.6.0.openbsd-armv7.tar.gz
commit: null
size: 2990338
sha256: sha256:77f54ebce3cb10884cd05eebf1ba8626d1b7493c9badf98e18c4daa6487ba659
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.openbsd-armv7.tar.gz
- name: haproxy_exporter-0.6.0.windows-386.tar.gz
commit: null
size: 3076072
sha256: sha256:49c35db999d5d18145bcc13a14707b0e550c5dbdcd979aa1f01404794bef88da
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.windows-386.tar.gz
- name: haproxy_exporter-0.6.0.windows-amd64.tar.gz
commit: null
size: 3304012
sha256: sha256:007cf4809fd34cc8a6ee74c1727d83232762b9ef8c8a7be6cc687f8a934f1b52
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.6.0/haproxy_exporter-0.6.0.windows-amd64.tar.gz
- name: 0.5.2
commit: null
timestamp: '2016-04-04T23:12:51'
prerelease: false
files:
- name: haproxy_exporter-0.5.2.darwin-386.tar.gz
commit: null
size: 2806700
sha256: sha256:d3c0343c2ccd9faabc9dc26a58b552bfd0ea4dd22932559e2337c34b9f75cf86
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.2/haproxy_exporter-0.5.2.darwin-386.tar.gz
- name: haproxy_exporter-0.5.2.darwin-amd64.tar.gz
commit: null
size: 3000907
sha256: sha256:d9ad2bcd45b3856ff8c26084f7141722530bb1fe954b8edc2f930f6d79952527
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.2/haproxy_exporter-0.5.2.darwin-amd64.tar.gz
- name: haproxy_exporter-0.5.2.linux-386.tar.gz
commit: null
size: 2793106
sha256: sha256:99f28fd5994c3bd039f34ef883dcef44a08829fc319a7f37abe976ee76ee07eb
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.2/haproxy_exporter-0.5.2.linux-386.tar.gz
- name: haproxy_exporter-0.5.2.linux-amd64.tar.gz
commit: null
size: 2998040
sha256: sha256:15b5e0f8044ffd7c107fbe2ce3df781a852e0e1d15dd1058857f58724d461d12
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.2/haproxy_exporter-0.5.2.linux-amd64.tar.gz
- name: haproxy_exporter-0.5.2.linux-arm.tar.gz
commit: null
size: 2690998
sha256: sha256:f145d5d5d7ea8dda71a88cf50a3e7e61100a6c47548991b9849a257f7d301e71
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.2/haproxy_exporter-0.5.2.linux-arm.tar.gz
- name: haproxy_exporter-0.5.2.linux-ppc64.tar.gz
commit: null
size: 2860852
sha256: sha256:8f906d79836afcb9b1062bf337564ba74e086d45a7e375330178cad9a32e815a
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.2/haproxy_exporter-0.5.2.linux-ppc64.tar.gz
- name: 0.5.1
commit: null
timestamp: '2016-03-31T21:44:55'
prerelease: false
files:
- name: haproxy_exporter-0.5.1.darwin-386.tar.gz
commit: null
size: 2806122
sha256: sha256:bc3fdd6881bf9c918ab224071b31d114c5ff015093cc56d5b50768be5f8d08df
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.1/haproxy_exporter-0.5.1.darwin-386.tar.gz
- name: haproxy_exporter-0.5.1.darwin-amd64.tar.gz
commit: null
size: 3001124
sha256: sha256:87c97255471666c964b6f41ac5ec1b1c032d7d930ac3b0cfefbccdecb9049d27
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.1/haproxy_exporter-0.5.1.darwin-amd64.tar.gz
- name: haproxy_exporter-0.5.1.linux-386.tar.gz
commit: null
size: 2792853
sha256: sha256:257cf297fec5278abd527cfb0126aaa53a4d2ce98297fa2a43377ad06c24b98a
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.1/haproxy_exporter-0.5.1.linux-386.tar.gz
- name: haproxy_exporter-0.5.1.linux-amd64.tar.gz
commit: null
size: 2998128
sha256: sha256:38c995a7d99bd3a85f7818463504059ef74ebbd67c11520ba34aa57d848e4366
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.1/haproxy_exporter-0.5.1.linux-amd64.tar.gz
- name: haproxy_exporter-0.5.1.linux-arm.tar.gz
commit: null
size: 2691092
sha256: sha256:ebce4ad8f4df7d9d7f490ede11c7c44fc4ffc3da42a5e655281d6bca1e8cfcb3
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.1/haproxy_exporter-0.5.1.linux-arm.tar.gz
- name: haproxy_exporter-0.5.1.linux-ppc64.tar.gz
commit: null
size: 2860109
sha256: sha256:2253c1c2ceb18a91e051ef78945070b963aee6161aaec3809a07a4d979ba2777
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.1/haproxy_exporter-0.5.1.linux-ppc64.tar.gz
- name: 0.5.0
commit: null
timestamp: '2015-12-23T17:23:14'
prerelease: false
files:
- name: haproxy_exporter-0.5.0.darwin-386.tar.gz
commit: null
size: 2805200
sha256: sha256:811a0bde21c372d1dce33f7ed73167c596c72430501f7ce5bf94c56b42e6fc5a
url: https://github.com/prometheus/haproxy_exporter/releases/download/0.5.0/haproxy_exporter-0.5.0.darwin-386.tar.gz
- name: haproxy_exporter-0.5.0.darwin-amd64.tar.gz
commit: null
size: 2999871