forked from mesaguy/ansible-prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postgres_exporter_prometheus_community.yml
962 lines (962 loc) · 57.1 KB
/
postgres_exporter_prometheus_community.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
---
defaults:
port: 9187
tgroup: postgres
software:
name: wrouesnel/postgres_exporter
release: v0.10.0
prerelease: null
url: https://github.com/prometheus-community/postgres_exporter
source: https://github.com/prometheus-community/postgres_exporter.git
updated: '2021-09-15T17:38:18.084062'
master:
commit:
sha: 0977e96b56eecfbb2d01afc92269b7a25be93670
timestamp: '2021-09-09T10:20:31'
files: []
releases:
- name: v0.10.0
commit: null
timestamp: '2021-07-09T15:23:32'
prerelease: false
files:
- name: postgres_exporter-0.10.0.aix-ppc64.tar.gz
commit: null
size: 6615651
sha256: sha256:5e76b99dff68e1b7521541937ff4ef1973d81a37841ae44cbd03a0e0508d5ab9
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.aix-ppc64.tar.gz
- name: postgres_exporter-0.10.0.darwin-amd64.tar.gz
commit: null
size: 7143038
sha256: sha256:cfbfe5f3e2c983a68f22ddf4b10ee9497173d6bf8e6d599237e48f5a852176c1
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.darwin-amd64.tar.gz
- name: postgres_exporter-0.10.0.darwin-arm64.tar.gz
commit: null
size: 6973191
sha256: sha256:4c716fc2fefa094f797d2761e2c72e51891833f6de4ca9954fa570b9ef755589
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.darwin-arm64.tar.gz
- name: postgres_exporter-0.10.0.dragonfly-amd64.tar.gz
commit: null
size: 7237336
sha256: sha256:4220370a2050687900cb5763c3516a2bff1b7dbbb3a7851531f8688639c08d75
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.dragonfly-amd64.tar.gz
- name: postgres_exporter-0.10.0.freebsd-386.tar.gz
commit: null
size: 7065142
sha256: sha256:d18e60ced041603ca3d3f935322ccec780d0036dd0f800f4dbad04fa896c4c18
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.freebsd-386.tar.gz
- name: postgres_exporter-0.10.0.freebsd-amd64.tar.gz
commit: null
size: 7263188
sha256: sha256:ebedd5b66cfeea6614b8b0bcf49f21fea0f129613b8d5b2c55e4642514b798df
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.freebsd-amd64.tar.gz
- name: postgres_exporter-0.10.0.freebsd-arm64.tar.gz
commit: null
size: 6727939
sha256: sha256:698d951a9da4f5384cef6f164a7d3f29c1d9ef54d854b60957e09871ab87d8a0
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.freebsd-arm64.tar.gz
- name: postgres_exporter-0.10.0.freebsd-armv6.tar.gz
commit: null
size: 6749401
sha256: sha256:b915ad8c405374ea92a5cae49709b59f53ff6893c670ae8b4b5b2c5a2d4c3f72
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.freebsd-armv6.tar.gz
- name: postgres_exporter-0.10.0.freebsd-armv7.tar.gz
commit: null
size: 6746636
sha256: sha256:1783d34bf567ca278a7f7a233ab8bb2905ab6bdf3cae7e44cfc8c34fa1a6a928
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.freebsd-armv7.tar.gz
- name: postgres_exporter-0.10.0.illumos-amd64.tar.gz
commit: null
size: 7219605
sha256: sha256:c8f9ceb6a17e02994f0b05b13d9418faa4fa1adfc967249a9ab0ff28b44dd0e0
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.illumos-amd64.tar.gz
- name: postgres_exporter-0.10.0.linux-386.tar.gz
commit: null
size: 7094089
sha256: sha256:59295e06c557cb1de0de6cf7ceb707f48bd497d9cb5b885b49f720da42537937
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-386.tar.gz
- name: postgres_exporter-0.10.0.linux-amd64.tar.gz
commit: null
size: 7285638
sha256: sha256:1d1a008c5e29673b404a9ce119b7516fa59974aeda2f47d4a0446d102abce8a1
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-amd64.tar.gz
- name: postgres_exporter-0.10.0.linux-arm64.tar.gz
commit: null
size: 6785361
sha256: sha256:82a1a4e07c7140f8e55532dbbdfea3bbba33dafc7ef0a221601bb2fd5359ff03
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-arm64.tar.gz
- name: postgres_exporter-0.10.0.linux-armv5.tar.gz
commit: null
size: 6789316
sha256: sha256:2e01677dda238d71fd20e8acf978ccfbd2e366bf4c8b6401ead16730acb9371e
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-armv5.tar.gz
- name: postgres_exporter-0.10.0.linux-armv6.tar.gz
commit: null
size: 6776147
sha256: sha256:8c1df1bf871b9b145bcd5a996067e27a73f525caa556b2a485cc6a7be6bd9656
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-armv6.tar.gz
- name: postgres_exporter-0.10.0.linux-armv7.tar.gz
commit: null
size: 6771838
sha256: sha256:658c9a69e8d55cd6a5af2e87ae4047923f445de9e203909c6e85906a0f02258e
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-armv7.tar.gz
- name: postgres_exporter-0.10.0.linux-mips.tar.gz
commit: null
size: 6771596
sha256: sha256:8f5a57e5176f6ce10feb907e2074cbe31d789bcfddfe56fbfc95d2627f1ded05
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-mips.tar.gz
- name: postgres_exporter-0.10.0.linux-mips64.tar.gz
commit: null
size: 6886898
sha256: sha256:195127eb1afb5f586c3321428a47e7c9d39fa4374f3820d2dbbf8b09042f4e46
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-mips64.tar.gz
- name: postgres_exporter-0.10.0.linux-mips64le.tar.gz
commit: null
size: 6666773
sha256: sha256:9cfa6847e7c9fdba145d2b3d8deaa3000ce839088a505b682b739252792efba1
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-mips64le.tar.gz
- name: postgres_exporter-0.10.0.linux-mipsle.tar.gz
commit: null
size: 6616730
sha256: sha256:a7a1b2efc3e4c876ae6f6a7651392c24ab3056f37cc2cae58e1d022b71858d4d
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-mipsle.tar.gz
- name: postgres_exporter-0.10.0.linux-ppc64.tar.gz
commit: null
size: 6894266
sha256: sha256:fea65a09a66052de25dcd187ef2c7f4884c79f20d17bac1107a7679d436ac9ee
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-ppc64.tar.gz
- name: postgres_exporter-0.10.0.linux-ppc64le.tar.gz
commit: null
size: 6699554
sha256: sha256:bbe0879edfaef897c5c8458054a37912f3ac122e19effa0e83e6d4d364492740
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-ppc64le.tar.gz
- name: postgres_exporter-0.10.0.linux-s390x.tar.gz
commit: null
size: 7295380
sha256: sha256:44c1d6ca151e223390e117387108a74ea4656c66057d56ed4dc5ac3b9178cde7
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.linux-s390x.tar.gz
- name: postgres_exporter-0.10.0.netbsd-386.tar.gz
commit: null
size: 7042582
sha256: sha256:43a2a8a6c900081fb8e6f15985e3cf1c8d80ce815c15094a707270be64a7aedd
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.netbsd-386.tar.gz
- name: postgres_exporter-0.10.0.netbsd-amd64.tar.gz
commit: null
size: 7231766
sha256: sha256:9519ec991aa89375aa0144a6fbf946bf687246376503461f44aabf67632bf44e
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.netbsd-amd64.tar.gz
- name: postgres_exporter-0.10.0.netbsd-arm64.tar.gz
commit: null
size: 6710162
sha256: sha256:914bba1882c102a87a6a33ae1f9b38ee62983075a800d74817b84dc1205ca5c3
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.netbsd-arm64.tar.gz
- name: postgres_exporter-0.10.0.netbsd-armv6.tar.gz
commit: null
size: 6727257
sha256: sha256:4202700dc4cfd90a99cff44b64f0cf5941daf692c05a1d52767da58bf20022ed
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.netbsd-armv6.tar.gz
- name: postgres_exporter-0.10.0.netbsd-armv7.tar.gz
commit: null
size: 6726746
sha256: sha256:75989b1d223d019561a217b132f4cd3e770fd9942b2d5db364f4dd54173022c5
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.netbsd-armv7.tar.gz
- name: postgres_exporter-0.10.0.openbsd-386.tar.gz
commit: null
size: 7036388
sha256: sha256:0deb77cfc33e4f0e58cd7d61079e532f064bda7c9ca4181dd3396ca20999bdd1
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.openbsd-386.tar.gz
- name: postgres_exporter-0.10.0.openbsd-amd64.tar.gz
commit: null
size: 7247349
sha256: sha256:a10700b7a5ef7848d38fa533b7fdeb0308a77bb13564f168c21b12e29a6dfc8e
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.openbsd-amd64.tar.gz
- name: postgres_exporter-0.10.0.openbsd-arm64.tar.gz
commit: null
size: 6731041
sha256: sha256:64bb60c1e426263f6f97df4b91fd3040cc33d4baa070c2c074da40b0679cef43
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.openbsd-arm64.tar.gz
- name: postgres_exporter-0.10.0.openbsd-armv7.tar.gz
commit: null
size: 6723276
sha256: sha256:f57439e867ab3f03464114db8c48370c22d38bef1d93c6d3ffec16c58a2e032a
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.openbsd-armv7.tar.gz
- name: postgres_exporter-0.10.0.windows-386.tar.gz
commit: null
size: 7301627
sha256: sha256:dc65a98b8e1e1bdf15681701ac4f6eea8c7e15bde3bf5f8fdc746ab427114fbc
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.windows-386.tar.gz
- name: postgres_exporter-0.10.0.windows-386.zip
commit: null
size: 7405552
sha256: sha256:3d85ef715b346cc8cc90c9a9b82d741fd1384c6c301661325403cfd9e7825063
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.windows-386.zip
- name: postgres_exporter-0.10.0.windows-amd64.tar.gz
commit: null
size: 7406412
sha256: sha256:5c03f3c4255e7d46c709f5aba14ff6a7b70bf2d31d112aa7d87f1d80aa80ffa4
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.windows-amd64.tar.gz
- name: postgres_exporter-0.10.0.windows-amd64.zip
commit: null
size: 7480531
sha256: sha256:2d87fad940f25242351675b2151508f90a82f8b47e3c0d5f5287d689ec6232af
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/postgres_exporter-0.10.0.windows-amd64.zip
- name: sha256sums.txt
commit: null
size: 3985
sha256: sha256:b2903477873a919717b212888294b3346af3351994a923573e6b926f3c071cd4
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.10.0/sha256sums.txt
- name: v0.9.0
commit: null
timestamp: '2021-03-01T13:21:41'
prerelease: false
files:
- name: postgres_exporter-0.9.0.aix-ppc64.tar.gz
commit: null
size: 6464940
sha256: sha256:8affc7d31b7a6eca25eb559072679c09003ae22a5edb7f1ce2973e7efff4a4e4
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.aix-ppc64.tar.gz
- name: postgres_exporter-0.9.0.darwin-amd64.tar.gz
commit: null
size: 6837509
sha256: sha256:4483fe1d41e6f1aae6a562bd75b77522fe1965686b33b4834735b2f648d85e74
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.darwin-amd64.tar.gz
- name: postgres_exporter-0.9.0.dragonfly-amd64.tar.gz
commit: null
size: 6908042
sha256: sha256:a19669daec458e3d2aee7d8ccba3d93ea997770f484f356896c623a600b845c9
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.dragonfly-amd64.tar.gz
- name: postgres_exporter-0.9.0.freebsd-386.tar.gz
commit: null
size: 6723884
sha256: sha256:67bef6ae27405e761b283767799a3c8dc9fcb5f1f0a873e668d41673f838fe0f
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.freebsd-386.tar.gz
- name: postgres_exporter-0.9.0.freebsd-amd64.tar.gz
commit: null
size: 6938664
sha256: sha256:25b16c611677b3e82783e5b7b014980e9a6cbafb0dedb496c40587e25eec7f8d
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.freebsd-amd64.tar.gz
- name: postgres_exporter-0.9.0.freebsd-arm64.tar.gz
commit: null
size: 6421480
sha256: sha256:e3654d77af26aaa581296a1c12b56c26d03c73f498aa19cac98b7c57e90ea06e
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.freebsd-arm64.tar.gz
- name: postgres_exporter-0.9.0.freebsd-armv6.tar.gz
commit: null
size: 6421733
sha256: sha256:b84513d60742d6724dd7a67a9a0ca21548049acbae7527d6b863c34b0b78e213
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.freebsd-armv6.tar.gz
- name: postgres_exporter-0.9.0.freebsd-armv7.tar.gz
commit: null
size: 6414685
sha256: sha256:171e86b0d7a2501ff7600833aa9e8187dacbbf447348a2e491980450bc8c11f4
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.freebsd-armv7.tar.gz
- name: postgres_exporter-0.9.0.linux-386.tar.gz
commit: null
size: 6751138
sha256: sha256:c5de9dc0a5303446b1c83978c473a1f9099f6241339f5b8f1ee5faf350f039f0
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-386.tar.gz
- name: postgres_exporter-0.9.0.linux-amd64.tar.gz
commit: null
size: 6954762
sha256: sha256:ff541bd3ee19c0ae003d71424a75edfcc8695e828dd20d5b4555ce433c89d60b
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-amd64.tar.gz
- name: postgres_exporter-0.9.0.linux-arm64.tar.gz
commit: null
size: 6474600
sha256: sha256:d869c16791481dc8475487ad84ae4371a63f9b399898ca1c666eead5cccf7182
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-arm64.tar.gz
- name: postgres_exporter-0.9.0.linux-armv5.tar.gz
commit: null
size: 6441507
sha256: sha256:df5c726e130d7bf075aa4f62a6f0cd33ccc353d0284a1031fdfc8d7503d99924
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-armv5.tar.gz
- name: postgres_exporter-0.9.0.linux-armv6.tar.gz
commit: null
size: 6443070
sha256: sha256:6807dbd2ad87dc9e472a82d8e1305e5c3b7c9e0f38b997d2ba331a454b387997
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-armv6.tar.gz
- name: postgres_exporter-0.9.0.linux-armv7.tar.gz
commit: null
size: 6438068
sha256: sha256:7086d0ebfe0d2a4526f7193d80077005b55e48ed6e7d922ac8bcc12f552f12d1
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-armv7.tar.gz
- name: postgres_exporter-0.9.0.linux-mips.tar.gz
commit: null
size: 6444619
sha256: sha256:fccc5003045e82868c448cf07be7b69c77d467c1f716f98baea9fc05f64be089
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-mips.tar.gz
- name: postgres_exporter-0.9.0.linux-mips64.tar.gz
commit: null
size: 6575100
sha256: sha256:1bec62fda7d9247ea156be6f4c49b68c2ada85a60c6f608c0e06b63dfc9a8cc8
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-mips64.tar.gz
- name: postgres_exporter-0.9.0.linux-mips64le.tar.gz
commit: null
size: 6368008
sha256: sha256:5fbcd78fcea740f4b60bb7e1a83bfc145236a120ae468a26b3008e2bb1906b13
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-mips64le.tar.gz
- name: postgres_exporter-0.9.0.linux-mipsle.tar.gz
commit: null
size: 6296516
sha256: sha256:01a1d202cfa9d78fb1157e91886900ea29cd65b534b99be0844c2bd59a251958
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-mipsle.tar.gz
- name: postgres_exporter-0.9.0.linux-ppc64.tar.gz
commit: null
size: 6591058
sha256: sha256:eb09e85620e210edec5f0b5d24e2ebf5744831a24bb5fe04d855166ef0639251
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-ppc64.tar.gz
- name: postgres_exporter-0.9.0.linux-ppc64le.tar.gz
commit: null
size: 6410911
sha256: sha256:c91f6a69903b11c6e39e8bc623f7374e59b6e04ed981a4b3c832b9a95033976a
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-ppc64le.tar.gz
- name: postgres_exporter-0.9.0.linux-s390x.tar.gz
commit: null
size: 6975224
sha256: sha256:a2d9fd48ae946826c5fb9c23408c2e2d253569443c6a0a499f21991d1dec3336
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.linux-s390x.tar.gz
- name: postgres_exporter-0.9.0.netbsd-386.tar.gz
commit: null
size: 6696620
sha256: sha256:a87cb39d78c57e818da558f990e1545cf38ac6fea4a156e9086afc24cb6a5ca1
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.netbsd-386.tar.gz
- name: postgres_exporter-0.9.0.netbsd-amd64.tar.gz
commit: null
size: 6906801
sha256: sha256:bf6cc1e5a3659240aca134e2bf0db40fcd89822003afc801d0fc478882319d86
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.netbsd-amd64.tar.gz
- name: postgres_exporter-0.9.0.netbsd-arm64.tar.gz
commit: null
size: 6406686
sha256: sha256:01b9771b2a36d6941998ce6a023eb5ef0481d680f572d37f35f7609c18c2d2c3
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.netbsd-arm64.tar.gz
- name: postgres_exporter-0.9.0.netbsd-armv6.tar.gz
commit: null
size: 6398397
sha256: sha256:ca7376a3df22c86c877275fd1c52e7ac047caadde9511ba2b7ea9d2d71733aa7
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.netbsd-armv6.tar.gz
- name: postgres_exporter-0.9.0.netbsd-armv7.tar.gz
commit: null
size: 6393428
sha256: sha256:855a919f5c5fc5e4dde8cd90ed3627ca2e3f729043e0590b5a5b8cfff73f4219
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.netbsd-armv7.tar.gz
- name: postgres_exporter-0.9.0.openbsd-386.tar.gz
commit: null
size: 6696513
sha256: sha256:be3636d223bf09f36a9b12b80c3e624921071381066f1be385ee4c57c8846b74
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.openbsd-386.tar.gz
- name: postgres_exporter-0.9.0.openbsd-amd64.tar.gz
commit: null
size: 6908996
sha256: sha256:9d16b206faf8cd0b1d56465974b794d60cec4d4585cfcc841324989be11295c8
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.openbsd-amd64.tar.gz
- name: postgres_exporter-0.9.0.openbsd-arm64.tar.gz
commit: null
size: 6404763
sha256: sha256:31e4801c05fecf3363c10c74ad9ae3dca98a23bcf3737e6fc54c3ee638495778
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.openbsd-arm64.tar.gz
- name: postgres_exporter-0.9.0.openbsd-armv7.tar.gz
commit: null
size: 6392458
sha256: sha256:f78f451651881639e3f4291bdcf58c36b08988cdf7ece7d7679e2b0b0f4a12a6
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.openbsd-armv7.tar.gz
- name: postgres_exporter-0.9.0.windows-386.tar.gz
commit: null
size: 6832594
sha256: sha256:5d90e2ebb89aa8f47a6bab281517d045f4a7e133cb03c88e9d4dd626d5f02e4c
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.windows-386.tar.gz
- name: postgres_exporter-0.9.0.windows-386.zip
commit: null
size: 6943093
sha256: sha256:44f4721742e2fb7cc1e040f1663483a2d15e63ceec8e66e579ed41d16c4e01cd
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.windows-386.zip
- name: postgres_exporter-0.9.0.windows-amd64.tar.gz
commit: null
size: 6963789
sha256: sha256:e6732bf7a78b7dd8b8d1f9c55fc27b27160d840a3da80e57378789a4857a8de2
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.windows-amd64.tar.gz
- name: postgres_exporter-0.9.0.windows-amd64.zip
commit: null
size: 7049026
sha256: sha256:ee282195eb9e756c21708d044334c2e47970bdb1c2d64d4b16160149f3ff6c62
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/postgres_exporter-0.9.0.windows-amd64.zip
- name: sha256sums.txt
commit: null
size: 3728
sha256: sha256:af34dadfee2c49faceeafa648594e090b376e41b4ebd6a2892003d0619f8e59b
url: https://github.com/prometheus-community/postgres_exporter/releases/download/v0.9.0/sha256sums.txt
- name: v0.8.0
commit: null
timestamp: '2019-11-25T13:34:34'
prerelease: false
files:
- name: postgres_exporter_v0.8.0_darwin-386.tar.gz
commit: null
size: 5899493
sha256: sha256:b8b247ceafa5a7102806ed25cdaf118dba9ca39716cee194725a7f860c92d4da
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.8.0/postgres_exporter_v0.8.0_darwin-386.tar.gz
- name: postgres_exporter_v0.8.0_darwin-amd64.tar.gz
commit: null
size: 6031652
sha256: sha256:ed8ef28ef0045dd7141d9395c9f885001840d5ddbbb05086a33e881b85f71681
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.8.0/postgres_exporter_v0.8.0_darwin-amd64.tar.gz
- name: postgres_exporter_v0.8.0_freebsd-amd64.tar.gz
commit: null
size: 6025656
sha256: sha256:6f98f5421f7b10cc198aad229e1a9cf976df5405d305dff75b0b6ef81c5932ff
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.8.0/postgres_exporter_v0.8.0_freebsd-amd64.tar.gz
- name: postgres_exporter_v0.8.0_linux-386.tar.gz
commit: null
size: 5869617
sha256: sha256:c5bc36f21cf3408adfec1d8175eab411a4a1523ec2eccc181a665d031a7b825a
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.8.0/postgres_exporter_v0.8.0_linux-386.tar.gz
- name: postgres_exporter_v0.8.0_linux-amd64.tar.gz
commit: null
size: 6016522
sha256: sha256:272ed14d3c360579d6e231db34a568ec08f61d2e163cf111e713929ffb6db3f5
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.8.0/postgres_exporter_v0.8.0_linux-amd64.tar.gz
- name: postgres_exporter_v0.8.0_windows-386.tar.gz
commit: null
size: 5762870
sha256: sha256:85141e811cfffddb95e563bf4ba1c9136c33c067b649e552ea9eccd400c986fa
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.8.0/postgres_exporter_v0.8.0_windows-386.tar.gz
- name: postgres_exporter_v0.8.0_windows-386.zip
commit: null
size: 5772653
sha256: sha256:420b545793245d523daac65b603843f1d95c96f43f16965cabec8cd40a24195a
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.8.0/postgres_exporter_v0.8.0_windows-386.zip
- name: postgres_exporter_v0.8.0_windows-amd64.tar.gz
commit: null
size: 5949383
sha256: sha256:110ff7bdbb33bb4ab37ae74f5b1957b9a201323122a8c548f287e22d4403922d
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.8.0/postgres_exporter_v0.8.0_windows-amd64.tar.gz
- name: postgres_exporter_v0.8.0_windows-amd64.zip
commit: null
size: 5973649
sha256: sha256:6bc320a043d237fdb4a3f2571a714a7e9677385ae210debcadc9323298ceb2c4
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.8.0/postgres_exporter_v0.8.0_windows-amd64.zip
- name: v0.7.0
commit: null
timestamp: '2019-10-31T14:08:11'
prerelease: false
files:
- name: postgres_exporter_v0.7.0_darwin-386.tar.gz
commit: null
size: 5831907
sha256: sha256:8af2f7fe09de6b807b7e5faeea0091823fd323bcad36d16e2b80121e5bd3cfd0
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.7.0/postgres_exporter_v0.7.0_darwin-386.tar.gz
- name: postgres_exporter_v0.7.0_darwin-amd64.tar.gz
commit: null
size: 5962253
sha256: sha256:06b662d50a3b76481f365f08bc2df3bd971238aefafee158838f0d5811713d0e
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.7.0/postgres_exporter_v0.7.0_darwin-amd64.tar.gz
- name: postgres_exporter_v0.7.0_freebsd-amd64.tar.gz
commit: null
size: 5955191
sha256: sha256:7b0c7c384615f1639e8c38e686ffbb64af695a698ddba95a95a9493a4e4d1e73
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.7.0/postgres_exporter_v0.7.0_freebsd-amd64.tar.gz
- name: postgres_exporter_v0.7.0_linux-386.tar.gz
commit: null
size: 5803301
sha256: sha256:581fec20355afd7eb3c1e526ea6d0cbf43beb30a70382c223bdf5fae1efc92bf
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.7.0/postgres_exporter_v0.7.0_linux-386.tar.gz
- name: postgres_exporter_v0.7.0_linux-amd64.tar.gz
commit: null
size: 5949662
sha256: sha256:a8409e64c5f377134e15cfd40a2da973c059f0955346379606a505677354125a
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.7.0/postgres_exporter_v0.7.0_linux-amd64.tar.gz
- name: postgres_exporter_v0.7.0_windows-386.tar.gz
commit: null
size: 5693422
sha256: sha256:672a9d82188d8cfedcd0021987b5f672d3f0b9d61036063f26071aaa9b6850a4
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.7.0/postgres_exporter_v0.7.0_windows-386.tar.gz
- name: postgres_exporter_v0.7.0_windows-386.zip
commit: null
size: 5703315
sha256: sha256:dd0b452e575af1e3392c21d1943410931aa60436b9152787762411f70cccbe2b
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.7.0/postgres_exporter_v0.7.0_windows-386.zip
- name: postgres_exporter_v0.7.0_windows-amd64.tar.gz
commit: null
size: 5879792
sha256: sha256:d640e983f9d52009022f2b93a8d45919ec69940852b13eec509a53f5e3d972ba
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.7.0/postgres_exporter_v0.7.0_windows-amd64.tar.gz
- name: postgres_exporter_v0.7.0_windows-amd64.zip
commit: null
size: 5904600
sha256: sha256:a555de2fbf43989b6ece9e14ca2e6195844f1bea5607b5664c46b44e517d025d
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.7.0/postgres_exporter_v0.7.0_windows-amd64.zip
- name: v0.6.0
commit: null
timestamp: '2019-10-30T14:55:20'
prerelease: false
files:
- name: postgres_exporter_v0.6.0_darwin-386.tar.gz
commit: null
size: 5828910
sha256: sha256:6a22b68633d6fc94dbf495bad51c91c2bb27567c442267768e40ad19a6b5f10b
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.6.0/postgres_exporter_v0.6.0_darwin-386.tar.gz
- name: postgres_exporter_v0.6.0_darwin-amd64.tar.gz
commit: null
size: 5960398
sha256: sha256:75db5e0615452c83498d4fde6005191a56b59cc0032dad70fd8e48248669c8f8
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.6.0/postgres_exporter_v0.6.0_darwin-amd64.tar.gz
- name: postgres_exporter_v0.6.0_freebsd-amd64.tar.gz
commit: null
size: 5952719
sha256: sha256:be1d0c6bc9347163b2909da9e42a1a17d38da75883952049404a4edfaa36f74a
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.6.0/postgres_exporter_v0.6.0_freebsd-amd64.tar.gz
- name: postgres_exporter_v0.6.0_linux-386.tar.gz
commit: null
size: 5799991
sha256: sha256:0485b8f88195b4aa1d0315f0d8653c76a2b02e7bf28aefea0eaf30c9a606ca3c
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.6.0/postgres_exporter_v0.6.0_linux-386.tar.gz
- name: postgres_exporter_v0.6.0_linux-amd64.tar.gz
commit: null
size: 5944435
sha256: sha256:d2b6b62928f28791b1d0f405776e8740df4b881af1bbd6781dc2c192c55a82c6
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.6.0/postgres_exporter_v0.6.0_linux-amd64.tar.gz
- name: postgres_exporter_v0.6.0_windows-386.tar.gz
commit: null
size: 5690870
sha256: sha256:e2512f5b1bfdb0e1c6c1ee777a951c342f2e506361bb9e13f8a7abb0edd591e9
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.6.0/postgres_exporter_v0.6.0_windows-386.tar.gz
- name: postgres_exporter_v0.6.0_windows-386.zip
commit: null
size: 5700809
sha256: sha256:ccea209fb6d2f2969157d9a962012cdc88d7fb5959884828f106c5396d1a9e3d
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.6.0/postgres_exporter_v0.6.0_windows-386.zip
- name: postgres_exporter_v0.6.0_windows-amd64.tar.gz
commit: null
size: 5876980
sha256: sha256:d6ab8738857845cea2348022587371b5aa79baab1ae141669b8418e53730d00a
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.6.0/postgres_exporter_v0.6.0_windows-amd64.tar.gz
- name: postgres_exporter_v0.6.0_windows-amd64.zip
commit: null
size: 5901600
sha256: sha256:116d4fa925872963cd72f6aa69f1a571c3c3bb53042a7e0e16f89fb5239a1f55
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.6.0/postgres_exporter_v0.6.0_windows-amd64.zip
- name: v0.5.1
commit: null
timestamp: '2019-07-12T01:33:17'
prerelease: false
files:
- name: postgres_exporter_v0.5.1_darwin-386.tar.gz
commit: null
size: 5804870
sha256: sha256:18fb14e03b2c20dc9eada817903fbcc1033bbd7e225f4cf4f5c84a1e01ba09cf
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.1/postgres_exporter_v0.5.1_darwin-386.tar.gz
- name: postgres_exporter_v0.5.1_darwin-amd64.tar.gz
commit: null
size: 5935097
sha256: sha256:0abc475f7c3e438e493c3f048fc23cd50446a296708a8d605736b120b299cebe
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.1/postgres_exporter_v0.5.1_darwin-amd64.tar.gz
- name: postgres_exporter_v0.5.1_freebsd-amd64.tar.gz
commit: null
size: 5928056
sha256: sha256:ad02a1a0cdec6531584951830d8ff27b73a1b75de688512e2475624d7ffa9bbf
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.1/postgres_exporter_v0.5.1_freebsd-amd64.tar.gz
- name: postgres_exporter_v0.5.1_linux-386.tar.gz
commit: null
size: 5773587
sha256: sha256:2e3b904c1fb586c5da8be5aed1e752d9ea7a9b6cc6374ba954e363195c3f60df
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.1/postgres_exporter_v0.5.1_linux-386.tar.gz
- name: postgres_exporter_v0.5.1_linux-amd64.tar.gz
commit: null
size: 5922452
sha256: sha256:7b00cc56d83e3a8f5a58d2b0f17f12b1b3b1b1ecccffffc3e8446ff187058c0e
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.1/postgres_exporter_v0.5.1_linux-amd64.tar.gz
- name: postgres_exporter_v0.5.1_windows-386.tar.gz
commit: null
size: 5666504
sha256: sha256:83b7b1463e1ffc733128c60017834500f6fa26cf9296a8396c013f6e5b355a6e
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.1/postgres_exporter_v0.5.1_windows-386.tar.gz
- name: postgres_exporter_v0.5.1_windows-386.zip
commit: null
size: 5680281
sha256: sha256:aa0e6f9022727d651d2e15eb664b2b9db1c232c40982075c71da44c7510bb5f0
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.1/postgres_exporter_v0.5.1_windows-386.zip
- name: postgres_exporter_v0.5.1_windows-amd64.tar.gz
commit: null
size: 5854366
sha256: sha256:06b9bf77ff8be6d245a72f6d8205783750a01b0c21f6de0fe232c530ba85f342
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.1/postgres_exporter_v0.5.1_windows-amd64.tar.gz
- name: postgres_exporter_v0.5.1_windows-amd64.zip
commit: null
size: 5877102
sha256: sha256:3a4d1551c90d6bc6fda186826e8da07d0b37ff41b2d8cada7c9bfdbdd632cf62
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.1/postgres_exporter_v0.5.1_windows-amd64.zip
- name: v0.5.0
commit: null
timestamp: '2019-07-03T14:06:17'
prerelease: false
files:
- name: postgres_exporter_v0.5.0_darwin-386.tar.gz
commit: null
size: 5804816
sha256: sha256:8a3f9c16f8cfe06d186f8ebeaf198811e066e90a45dc543c3ac2a3a42bd2b408
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.0/postgres_exporter_v0.5.0_darwin-386.tar.gz
- name: postgres_exporter_v0.5.0_darwin-amd64.tar.gz
commit: null
size: 5935094
sha256: sha256:fb9427e90f0cee86ab26e1fd6b759d46c2b5c83324e0cd8f75ac420161581400
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.0/postgres_exporter_v0.5.0_darwin-amd64.tar.gz
- name: postgres_exporter_v0.5.0_freebsd-amd64.tar.gz
commit: null
size: 5928022
sha256: sha256:f57df05a5a83f9d22e3f595cbac06c0c66d3793e5dcea7b600a2e98d3f5385e5
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.0/postgres_exporter_v0.5.0_freebsd-amd64.tar.gz
- name: postgres_exporter_v0.5.0_linux-386.tar.gz
commit: null
size: 5773586
sha256: sha256:a4e412428f65590c5ae9fb6a79a551fed1e6f16c6b76eabed7cb42b9d7a02a35
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.0/postgres_exporter_v0.5.0_linux-386.tar.gz
- name: postgres_exporter_v0.5.0_linux-amd64.tar.gz
commit: null
size: 5922467
sha256: sha256:50522a7709b2940c5fd89acea32bc7726de48a1d7781e70fd5bdfb49d5879048
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.0/postgres_exporter_v0.5.0_linux-amd64.tar.gz
- name: postgres_exporter_v0.5.0_windows-386.tar.gz
commit: null
size: 5666527
sha256: sha256:2e5c0c8ac5a98c98dddd4529f2d2b8a498ceb155bcf8fbcde30492cf72263626
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.0/postgres_exporter_v0.5.0_windows-386.tar.gz
- name: postgres_exporter_v0.5.0_windows-386.zip
commit: null
size: 5680303
sha256: sha256:e0b8ca298d3a05ab970031c9475a7858a906341b00b9011e390f1c06f18c49ee
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.0/postgres_exporter_v0.5.0_windows-386.zip
- name: postgres_exporter_v0.5.0_windows-amd64.tar.gz
commit: null
size: 5854478
sha256: sha256:e7cfcdef219834b5b33ac54f4d901b3f0ef25c9ecefd412311087779596af668
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.0/postgres_exporter_v0.5.0_windows-amd64.tar.gz
- name: postgres_exporter_v0.5.0_windows-amd64.zip
commit: null
size: 5877218
sha256: sha256:bc804ab158776fbe1019f9f1c2854e28a7769e068bbd929d447ba326ecbae8c6
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.5.0/postgres_exporter_v0.5.0_windows-amd64.zip
- name: v0.4.7
commit: null
timestamp: '2018-11-11T03:03:09'
prerelease: false
files:
- name: postgres_exporter_v0.4.7_darwin-386.tar.gz
commit: null
size: 4109653
sha256: sha256:db1bb0482c28838b1fd55cbe306bd280397e31f99a048c520075cf0a00a73be8
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.7/postgres_exporter_v0.4.7_darwin-386.tar.gz
- name: postgres_exporter_v0.4.7_darwin-amd64.tar.gz
commit: null
size: 4215411
sha256: sha256:65a06b504ea3c1dcb9462a2cf4c1031756f8a3f53922dbcef0863e22139f72af
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.7/postgres_exporter_v0.4.7_darwin-amd64.tar.gz
- name: postgres_exporter_v0.4.7_freebsd-amd64.tar.gz
commit: null
size: 4191506
sha256: sha256:4c5f2c56f46a7f8b7a83567d6bde71ee41da411b29d8d65cdfa6241cf930fe96
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.7/postgres_exporter_v0.4.7_freebsd-amd64.tar.gz
- name: postgres_exporter_v0.4.7_linux-386.tar.gz
commit: null
size: 4100946
sha256: sha256:f176b7142f018f35a14c68be9b66a8dcd4ef051419905ac3e697a36970998bcb
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.7/postgres_exporter_v0.4.7_linux-386.tar.gz
- name: postgres_exporter_v0.4.7_linux-amd64.tar.gz
commit: null
size: 4185587
sha256: sha256:c34d61bb4deba8efae06fd3c9979b96dae3f3c757698ce3384c80fff586c667b
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.7/postgres_exporter_v0.4.7_linux-amd64.tar.gz
- name: postgres_exporter_v0.4.7_windows-386.tar.gz
commit: null
size: 4065993
sha256: sha256:a22c23149fc2b1a4c2fb8d02aabfcaf25e7f39f5082234aca63c4aa8c2e1ad3a
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.7/postgres_exporter_v0.4.7_windows-386.tar.gz
- name: postgres_exporter_v0.4.7_windows-386.zip
commit: null
size: 4083865
sha256: sha256:e292040cfdba82702cd611e083a0ba425b23e546092a8355a046d825e917ef0b
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.7/postgres_exporter_v0.4.7_windows-386.zip
- name: postgres_exporter_v0.4.7_windows-amd64.tar.gz
commit: null
size: 4187061
sha256: sha256:7201209958f8050587eaf2779cd16cd27121127e575ec76c4f7a372f752ac857
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.7/postgres_exporter_v0.4.7_windows-amd64.tar.gz
- name: postgres_exporter_v0.4.7_windows-amd64.zip
commit: null
size: 4217911
sha256: sha256:59132b648cfd88fa1d7856f63f9326d2de529180eec0bbb112a13d10ff3a6830
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.7/postgres_exporter_v0.4.7_windows-amd64.zip
- name: v0.4.6
commit: null
timestamp: '2018-04-16T12:49:05'
prerelease: false
files:
- name: postgres_exporter_v0.4.6_darwin-386.tar.gz
commit: null
size: 4106720
sha256: sha256:f17a48e0164e95ab989ee2053e8bc6e7a6bdcf8ae0c6a89270013330557b530f
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.6/postgres_exporter_v0.4.6_darwin-386.tar.gz
- name: postgres_exporter_v0.4.6_darwin-amd64.tar.gz
commit: null
size: 4214317
sha256: sha256:a40a48f13983a4dba4fa029f8c29e29d526ad82255ca1c6316b65062f5b14c09
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.6/postgres_exporter_v0.4.6_darwin-amd64.tar.gz
- name: postgres_exporter_v0.4.6_linux-386.tar.gz
commit: null
size: 4100065
sha256: sha256:bbaca1e9256a15703e40b9bea5e542a8d99242aee556613c30fc705b80a131cc
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.6/postgres_exporter_v0.4.6_linux-386.tar.gz
- name: postgres_exporter_v0.4.6_linux-amd64.tar.gz
commit: null
size: 4183785
sha256: sha256:9ed457c9a6d3a1e0132b3fe10f1d072457a667b009993a73e90b47ca99cc5bca
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.6/postgres_exporter_v0.4.6_linux-amd64.tar.gz
- name: postgres_exporter_v0.4.6_windows-386.tar.gz
commit: null
size: 4065270
sha256: sha256:8478faf18746d22e6c6cf3d4f4464ada451bfcec1ae5e4dfa39557e54a408cb9
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.6/postgres_exporter_v0.4.6_windows-386.tar.gz
- name: postgres_exporter_v0.4.6_windows-386.zip
commit: null
size: 4082727
sha256: sha256:39a4326d45bcd6ed7599f7177d55bf2b8e83fe2bef0700f118b9576c575a2d8f
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.6/postgres_exporter_v0.4.6_windows-386.zip
- name: postgres_exporter_v0.4.6_windows-amd64.tar.gz
commit: null
size: 4185893
sha256: sha256:9a8180d51cab05e3b37984ae53670a9747d4ee2c4424a02b822089519c74e9b0
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.6/postgres_exporter_v0.4.6_windows-amd64.tar.gz
- name: postgres_exporter_v0.4.6_windows-amd64.zip
commit: null
size: 4216840
sha256: sha256:8d54983470b69fbdd55dfe294b146ab6ed70eac75b5121a34f9d8991a34bb739
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.6/postgres_exporter_v0.4.6_windows-amd64.zip
- name: v0.4.5
commit: null
timestamp: '2018-03-20T13:41:17'
prerelease: false
files:
- name: postgres_exporter_v0.4.5_darwin-386.tar.gz
commit: null
size: 4106549
sha256: sha256:a1e28e74c30182ef127614eb575ab6ea6f270138fdd2e952a4feb1d3e3513d8a
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.5/postgres_exporter_v0.4.5_darwin-386.tar.gz
- name: postgres_exporter_v0.4.5_darwin-amd64.tar.gz
commit: null
size: 4213782
sha256: sha256:e811baf2fd289e0eecd4b73f57b77bd8f0525867a8bb5c652be6b1676cea5aa1
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.5/postgres_exporter_v0.4.5_darwin-amd64.tar.gz
- name: postgres_exporter_v0.4.5_linux-386.tar.gz
commit: null
size: 4099438
sha256: sha256:2320628b45a997ed3f282a5a8ace252437d4f832ee15959b025f41aa7c34d4ed
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.5/postgres_exporter_v0.4.5_linux-386.tar.gz
- name: postgres_exporter_v0.4.5_linux-amd64.tar.gz
commit: null
size: 4183634
sha256: sha256:d83d7465cd7a2bf95957080db2cf3506051eb8e9e4f93a8dd56c689e8cadf0f2
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.5/postgres_exporter_v0.4.5_linux-amd64.tar.gz
- name: postgres_exporter_v0.4.5_windows-386.tar.gz
commit: null
size: 4064868
sha256: sha256:7dd0c5a200828925dc45acfef9e307cb6830510db6e13a999805004f82831fa5
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.5/postgres_exporter_v0.4.5_windows-386.tar.gz
- name: postgres_exporter_v0.4.5_windows-386.zip
commit: null
size: 4082264
sha256: sha256:6ca8a514c6c798f658dcf6b64fce577b3b647dc2c6b1674479a6966c050becc0
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.5/postgres_exporter_v0.4.5_windows-386.zip
- name: postgres_exporter_v0.4.5_windows-amd64.tar.gz
commit: null
size: 4185326
sha256: sha256:db965333b7e96c3179a4d14e76574f39f77a0fb3226cc83632ff100a046781fd
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.5/postgres_exporter_v0.4.5_windows-amd64.tar.gz
- name: postgres_exporter_v0.4.5_windows-amd64.zip
commit: null
size: 4216386
sha256: sha256:9460409da9efe682bf609b95510e7bae24af07b0bbd2ef98d1153ac2cce33793
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.5/postgres_exporter_v0.4.5_windows-amd64.zip
- name: v0.4.4
commit: null
timestamp: '2018-03-20T13:40:24'
prerelease: false
files:
- name: postgres_exporter_v0.4.4_darwin-386.tar.gz
commit: null
size: 4106355
sha256: sha256:5d21769845d153c1b7a1ea7b9c5ab4d06f0e8fa36dc62c8ed0c87ba891425b6c
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.4/postgres_exporter_v0.4.4_darwin-386.tar.gz
- name: postgres_exporter_v0.4.4_darwin-amd64.tar.gz
commit: null
size: 4212498
sha256: sha256:63185d6faa640fcc8e48a122dcb9fcfdeb4edf61df23df1c85bb0025b0fe9da5
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.4/postgres_exporter_v0.4.4_darwin-amd64.tar.gz
- name: postgres_exporter_v0.4.4_linux-386.tar.gz
commit: null
size: 4099458
sha256: sha256:4d312cd648bcae17a24d4ba30882086fcfb7275e4e9e78fa504cfd76214948c0
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.4/postgres_exporter_v0.4.4_linux-386.tar.gz
- name: postgres_exporter_v0.4.4_linux-amd64.tar.gz
commit: null
size: 4183463
sha256: sha256:f720f83d77f09f7fbf66836864df5ba9147e452b8306930483e3f748de445858
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.4/postgres_exporter_v0.4.4_linux-amd64.tar.gz
- name: postgres_exporter_v0.4.4_windows-386.tar.gz
commit: null
size: 4063665
sha256: sha256:7421a8cbd3cb04e08cf5bc8d04bb3ada9528beae7a37b9ffce1f23693a02ae6d
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.4/postgres_exporter_v0.4.4_windows-386.tar.gz
- name: postgres_exporter_v0.4.4_windows-386.zip
commit: null
size: 4081240
sha256: sha256:bd8e7a29d9c6fb1fdd08b91b965726b3727774ba67a3518423a84ec8b949672c
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.4/postgres_exporter_v0.4.4_windows-386.zip
- name: postgres_exporter_v0.4.4_windows-amd64.tar.gz
commit: null
size: 4184929
sha256: sha256:adc9e70b34f0b13c1fa99477daee1ed3b4c5680cd53fea2f0b33549bcbcd32ed
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.4/postgres_exporter_v0.4.4_windows-amd64.tar.gz
- name: postgres_exporter_v0.4.4_windows-amd64.zip
commit: null
size: 4215896
sha256: sha256:9b443deec6c28b329d50e94258c11513bbe8b3413b836b24b8fa42f8097d27b3
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.4/postgres_exporter_v0.4.4_windows-amd64.zip
- name: v0.4.2
commit: null
timestamp: '2018-02-19T12:59:25'
prerelease: false
files:
- name: postgres_exporter_v0.4.2_darwin-386.tar.gz
commit: null
size: 3624957
sha256: sha256:e148fd127532446754726f17dfd2da0f07aef781fa635aa99e8750d891be4e32
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.2/postgres_exporter_v0.4.2_darwin-386.tar.gz
- name: postgres_exporter_v0.4.2_darwin-amd64.tar.gz
commit: null
size: 3848800
sha256: sha256:baffa396882001f2049115c009f57501736b58f2bf6b0bacf13ee66722f42012
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.2/postgres_exporter_v0.4.2_darwin-amd64.tar.gz
- name: postgres_exporter_v0.4.2_linux-386.tar.gz
commit: null
size: 3589329
sha256: sha256:b25dbfa3b39128f9425ab43c2a356ce8232a78ebbf30d952ac1dcc1a4370f688
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.2/postgres_exporter_v0.4.2_linux-386.tar.gz
- name: postgres_exporter_v0.4.2_linux-amd64.tar.gz
commit: null
size: 3815981
sha256: sha256:630c718530faf61620d80ab701c25f8277be6842cc099d27208fbe5471407562
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.2/postgres_exporter_v0.4.2_linux-amd64.tar.gz
- name: postgres_exporter_v0.4.2_windows-386.tar.gz
commit: null
size: 3588420
sha256: sha256:0a997ad4b30e50f1066cb7c988e8cfac7a5b0513bde399fa61b6e9651715cf9a
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.2/postgres_exporter_v0.4.2_windows-386.tar.gz
- name: postgres_exporter_v0.4.2_windows-amd64.tar.gz
commit: null
size: 3823325
sha256: sha256:37251e9ea622455d01c6158c765c4c280814bf52953b52050f4d44bf733eaaed
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.2/postgres_exporter_v0.4.2_windows-amd64.tar.gz
- name: v0.4.1
commit: null
timestamp: '2017-11-30T03:49:34'
prerelease: false
files:
- name: postgres_exporter_v0.4.1_darwin-386.tar.gz
commit: null
size: 3624860
sha256: sha256:2f62a185ee1a74d6a41fd16e3643bcada16b16ded8627eca435cb3dcc218e706
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.1/postgres_exporter_v0.4.1_darwin-386.tar.gz
- name: postgres_exporter_v0.4.1_darwin-amd64.tar.gz
commit: null
size: 3848815
sha256: sha256:245602e8ac8d116361017562d511aa1186467ece08660a63426a8c143a6ea398
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.1/postgres_exporter_v0.4.1_darwin-amd64.tar.gz
- name: postgres_exporter_v0.4.1_linux-386.tar.gz
commit: null
size: 3589071
sha256: sha256:eb4b626ed1cfe15fa0af93be5d9fd75a2c21ad4a1bc9113a7c750446dfc668be
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.1/postgres_exporter_v0.4.1_linux-386.tar.gz
- name: postgres_exporter_v0.4.1_linux-amd64.tar.gz
commit: null
size: 3815745
sha256: sha256:219c2c116cb496d54ddbd23f392a38c3496ab8e7118dfbf8b7c0b21593dedbfd
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.1/postgres_exporter_v0.4.1_linux-amd64.tar.gz
- name: postgres_exporter_v0.4.1_windows-386.tar.gz
commit: null
size: 3587908
sha256: sha256:f433c2559d5f3c187f5187abab796ae5524831ee4a7d4672fe89a3da305892e2
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.1/postgres_exporter_v0.4.1_windows-386.tar.gz
- name: postgres_exporter_v0.4.1_windows-amd64.tar.gz
commit: null
size: 3823566
sha256: sha256:9fa9068458998394623e1cda3d32198d798b0ccbd3fa930589baeecf9f9fadca
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.1/postgres_exporter_v0.4.1_windows-amd64.tar.gz
- name: v0.4.0
commit: null
timestamp: '2017-11-29T12:28:01'
prerelease: false
files:
- name: postgres_exporter
commit: null
size: 12366891
sha256: sha256:139362ab2fef84b7e23bec01c90e664aabd4bb8a8371a6a08178827eaadd7ba1
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.4.0/postgres_exporter
- name: v0.3.0
commit: null
timestamp: '2017-10-23T10:54:23'
prerelease: false
files:
- name: postgres_exporter
commit: null
size: 8947456
sha256: sha256:44654860e3122acf183e8cad504bddc3bf9dd717910cddc99b589a3463d2ec6f
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.3.0/postgres_exporter
- name: v0.2.3
commit: null
timestamp: '2017-09-07T14:50:45'
prerelease: false
files:
- name: postgres_exporter
commit: null
size: 8943074
sha256: sha256:5d8db8052442b92caa7b34fa76d52942e5c2ced673ff37fd2e1e1486b3ed07f6
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.2.3/postgres_exporter
- name: v0.2.2
commit: null
timestamp: '2017-08-03T16:39:47'
prerelease: false
files:
- name: postgres_exporter
commit: null
size: 8693831
sha256: sha256:1e2ead2dd89c1c7021a697da9426b20f3e03b956a06ddbc1f61a0d345ad8929a
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.2.2/postgres_exporter
- name: v0.2.1
commit: null
timestamp: '2017-06-06T15:02:01'
prerelease: false
files:
- name: postgres_exporter
commit: null
size: 8693821
sha256: sha256:4bf310dd23e8291b5f652b51d3d3966454705a367c4a5105884c3f1581300439
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.2.1/postgres_exporter
- name: v0.2.0
commit: null
timestamp: '2017-04-18T13:35:34'
prerelease: false
files:
- name: postgres_exporter
commit: null
size: 8681479
sha256: sha256:93a8af893bda58966e6f9e7df47e2b67500c6b83ba94a3936ebfe65f0c213db6
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.2.0/postgres_exporter
- name: v0.1.2
commit: null
timestamp: '2017-02-07T10:29:11'
prerelease: false
files:
- name: postgres_exporter
commit: null
size: 8672741
sha256: sha256:42a47dd3a9ca8720adf1164f4c7f5707ff057e12ceccd3cff46ed634515662c2
url: https://github.com/wrouesnel/postgres_exporter/releases/download/v0.1.2/postgres_exporter