Matt T. Proud
fc39a92a06
Merge pull request #85 from prometheus/julius-fix-healthstate
...
Fix target health state update.
12 years ago
Julius Volz
047eb219e4
Fix target health state update.
...
Right now, futureState is only used to give hints to the health scheduler, but
nowhere is this future state persisted into the target's state field, so we
don't actually track a target's state over time.
12 years ago
Matt T. Proud
9262e70a56
Merge pull request #82 from prometheus/julius-fix-targets
...
Fix target pool deadlock and health checking bugs
12 years ago
Julius Volz
5d55785936
Fix broken target scrape error propagation.
12 years ago
Julius Volz
3537edee9f
Fix targetpool iteration deadlock.
12 years ago
Matt T. Proud
a4e2ccf680
Merge pull request #79 from prometheus/feature/storage/rethinking
...
Initial In-Memory Metric Store
12 years ago
Matt T. Proud
13ae29b304
Initial in-memory arena implementation.
...
It is unbounded, and nothing uses it except for a gating flag in main.
12 years ago
juliusv
536e07432d
Merge pull request #80 from prometheus/julius-add-missing-fixtures
...
Add missing config test fixtures.
12 years ago
Julius Volz
39411b516d
Add missing config test fixtures.
12 years ago
juliusv
db5868f1b3
Merge pull request #70 from prometheus/julius-hud
...
Cleanups and beginnings of a /status endpoint
12 years ago
Julius Volz
a908e397bc
Integrate cleanups for comments in PR70.
12 years ago
Julius Volz
d137362257
Config tests and config cleanups+fixes.
12 years ago
Julius Volz
23374788d3
Beginnings of a Prometheus status page.
12 years ago
Julius Volz
c3d31febd6
Move durationToString to common place and cleanup error handling.
12 years ago
juliusv
ae01bce5f1
Merge pull request #76 from prometheus/refactor/storage/simplifications
...
Interface simplification.
12 years ago
Matt T. Proud
efbe0e8a12
Interface simplification.
...
GetMetricForFingerprint(model.Fingerprint) (*Metric, error) ->
GetMetricForFingerprint(model.Fingerprint) (Metric, error)
12 years ago
juliusv
ddb82a6e5d
Merge pull request #75 from prometheus/refactor/storage/simplifications
...
Interface simplifications.
12 years ago
Matt T. Proud
f1245e8dda
Interface simplifications.
...
GetFingerprintsForLabelName ([]*Fingerprint, error) ->
GetFingerprintsForLabelName ([]Fingerprint, error)
12 years ago
Matt T. Proud
e8a733b525
Interface simplifications.
...
GetFingerprintsForLabelSet ([]*Fingerprint, error) ->
GetFingerprintsForLabelSet ([]Fingerprint, error)
12 years ago
Matt T. Proud
cbad5da29b
Merge pull request #74 from prometheus/refactor/storage/simplifications
...
GetFingerprintsForLabelName simplifications.
12 years ago
Matt T. Proud
f03091b139
Interface simplifications: GetRangeValues
...
From pointers to copies.
12 years ago
Matt T. Proud
14788cf4f3
Interface simplifications.
...
GetBoundaryValues() from pointers to values.
12 years ago
Matt T. Proud
56f069b3ec
Interface simplifications: GetValueAtTime().
...
Pointer arguments to copies.
12 years ago
Matt T. Proud
1e2d6c7418
GetFingerprintsForLabelName simplifications.
...
``MetricPersistence.GetFingerprintsForLabelName(l *model.LabelName)``
->
``MetricPersistence.GetFingerprintsForLabelName(l model.LabelName)``
12 years ago
Matt T. Proud
1f351d86c3
Merge pull request #73 from prometheus/refactor/storage/simplifications
...
Simplifications of GetFingerprintsForLabelSet.
12 years ago
Matt T. Proud
900bb988c1
Simplifications of GetFingerprintsForLabelSet.
...
``MetricPersistence.GetFingerprintsForLabelSet(s *model.LabelSet)`` ->
``MetricPersistence.GetFingerprintsForLabelSet(s model.LabelSet)``.
12 years ago
Matt T. Proud
2140850658
Merge pull request #72 from prometheus/refactor/storage/simplifications
...
MetricPersistence.AppendSample signature changes.
12 years ago
Matt T. Proud
4fbcea73f5
MetricPersistence.AppendSample signature changes.
...
``MetricPersistence.AppendSample(*model.Sample)`` -> ``MetricPersistence.AppendSample(model.Sample)``.
12 years ago
juliusv
79fc056090
Merge pull request #71 from prometheus/refactor/new-registry-api
...
The Prometheus Go client has a new handler API.
12 years ago
Matt T. Proud
d1e7f5bc4b
The Prometheus Go client has a new handler API.
12 years ago
juliusv
7b2ee03e90
Fix link to MacOSX instructions (again)
12 years ago
Matt T. Proud
75bd373223
Merge pull request #67 from prometheus/feature/storage/rethinking
...
Swap the Fingerprint Generator
12 years ago
Matt T. Proud
4502b49524
Swap out fingerprinting infrastructure.
...
All old database entries should be deleted. :-(
12 years ago
Matt T. Proud
9bc9dae124
Merge pull request #66 from prometheus/julius-hud
...
Move web-related code/resources to a subdirectory.
12 years ago
Julius Volz
2859227fdb
Make HTTP listen address a flag.
12 years ago
Julius Volz
0cbd03ccf9
Move web-related code/resources to a subdirectory.
12 years ago
juliusv
766a8e19d6
Merge pull request #65 from prometheus/feature/storage/rethinking
...
Create initial Metric fingerprinter.
12 years ago
Matt T. Proud
1c74eedf76
Create initial Metric fingerprinter.
...
The old system relies off of super-careful notion that the serialized
form of a Protocol Buffer should be used for fingerprint formulation.
Of course this is both wrong and inefficient. This commit breaks
ground for swapping to a pure attribute-oriented digest.
12 years ago
Matt T. Proud
79ca8f0708
Merge pull request #64 from prometheus/julius-cleanup-imports
...
Remove/replace last references to github.com/matttproud/...
12 years ago
Julius Volz
06ace4941d
Remove/replace last references to github.com/matttproud/...
12 years ago
Matt T. Proud
6d7c043b33
Merge pull request #63 from prometheus/julius-copyright-notices
...
Add copyright notices to all remaining files.
12 years ago
Julius Volz
16d9dcd6a8
Add copyright notices to all remaining files.
12 years ago
Matt T. Proud
d8c4f2c3c9
Merge pull request #62 from prometheus/julius-cleanups
...
Address outstanding comments from PR/47 and other cleanups.
12 years ago
Julius Volz
d67e4b9131
Address outstanding comments from PR/47 and other cleanups.
12 years ago
juliusv
abc09cf814
Merge pull request #61 from prometheus/feature/bulk-iteration-metric-names
...
Bulk iteration interface and UI metrics selector
12 years ago
Julius Volz
8194702bb3
Allow selecting available metrics through UI.
12 years ago
Julius Volz
2659304380
Add interface for getting all metrics from a MetricsPersistence.
12 years ago
Julius Volz
e23ac0adbd
Implement bulk iteration/operation storage interface.
12 years ago
Julius Volz
1d412fbd66
Adjust graph sizes depending on window size.
12 years ago
Julius Volz
acb45c98f8
Style expression browser a bit.
12 years ago