Commit 5c565235 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

gpl v3.0

parent 3207b195
Loading
Loading
Loading
Loading

LICENSE

0 → 100644
+674 −0

File added.

Preview size limit exceeded, changes collapsed.

+37 −39
Original line number Diff line number Diff line
@@ -21,10 +21,10 @@ Documentation
You can find the full FnordMetric Documentation at http://fnordmetric.io/


Contributing
------------
Contributions
-------------

Ways to contribute:
Ways to contribute to FnordMetric:

  + report bugs or suggest new features
  + suggest or implement new options for existing charts or new chart types
@@ -35,57 +35,55 @@ Ways to contribute:
  + add some new features to the query engine (requires c++ knowledge)
  + many more! improve all the things :)

### Contributors to FnordMetric
#### Other Open Source Software included in FnordMetric

**Version 2.0.0**
  + Christian Parpart's xzero HTTP library (http://github.com/xzero)

Christian Parpart (http://github.com/trapni)
#### Individial Contributors to FnordMetric

**Version 0.0.8 - v1.2.9**
**Version 2.0.0**
  + Christian Parpart (http://github.com/trapni)

Simon Menke (http://github.com/fd),
Bruno Michel (http://github.com/nono),
Marco Borromeo (http://github.com/mborromeo),
Leo Lou (http://github.com/l4u)
Andy Lindeman (http://github.com/alindeman),
Jurriaan Pruis (http://github.com/jurriaan),
Kacper Bielecki (http://github.com/kazjote),
John Murray (http://github.com/JohnMurray),
Lars Gierth (http://github.com/lgierth),
Ross Kaffenberger (http://github.com/rossta),
Kunal Modi (http://github.com/kunalmodi),
Michael Fairchild (http://github.com/fairchild),
James Cox (http://github.com/imajes),
Pieter Noordhuis (http://github.com/pietern),
Tadas Ščerbinskas (http://github.com/tadassce),
Sebastian Korfmann (http://github.com/skorfmann)
**Version 0.0.8 - v1.2.9**
 + Simon Menke (http://github.com/fd),
 + Bruno Michel (http://github.com/nono),
 + Marco Borromeo (http://github.com/mborromeo),
 + Leo Lou (http://github.com/l4u)
 + Andy Lindeman (http://github.com/alindeman),
 + Jurriaan Pruis (http://github.com/jurriaan),
 + Kacper Bielecki (http://github.com/kazjote),
 + John Murray (http://github.com/JohnMurray),
 + Lars Gierth (http://github.com/lgierth),
 + Ross Kaffenberger (http://github.com/rossta),
 + Kunal Modi (http://github.com/kunalmodi),
 + Michael Fairchild (http://github.com/fairchild),
 + James Cox (http://github.com/imajes),
 + Pieter Noordhuis (http://github.com/pietern),
 + Tadas Ščerbinskas (http://github.com/tadassce),
 + Sebastian Korfmann (http://github.com/skorfmann)

To contribute, please fork this repository, make your changes and run the 
specs, commit them to your github repository and send me a pull request.
Need help, head on over to our [Google Groups][1]  page to discuss any ideas
that you might have.


License
-------

Copyright (c) 2011-2014 Paul Asmuth

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to use, copy and modify copies of the Software, subject 
to the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FnordMetric is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.

FnordMetric is distributed in the hope that it will be useful,but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with
FnordMetric. If not, see <http://www.gnu.org/licenses/>.



  [1]: http://groups.google.com/group/fnordmetric
+6 −2
Original line number Diff line number Diff line
/**
 * This file is part of the "FnordMetric" project
 *   Copyright (c) 2014 Paul Asmuth, Google Inc.
 *   Copyright (c) 2011-2014 Paul Asmuth, Google Inc.
 *
 * Licensed under the MIT license (see LICENSE).
 * FnordMetric is free software: you can redistribute it and/or modify it under
 * the terms of the GNU General Public License v3.0. You should have received a
 * copy of the GNU General Public License along with this program. If not, see
 * <http://www.gnu.org/licenses/>.
 */

#include <stdlib.h>
#include "agent.h"
#include "query/query.h"
+6 −2
Original line number Diff line number Diff line
/**
 * This file is part of the "FnordMetric" project
 *   Copyright (c) 2014 Paul Asmuth, Google Inc.
 *   Copyright (c) 2011-2014 Paul Asmuth, Google Inc.
 *
 * Licensed under the MIT license (see LICENSE).
 * FnordMetric is free software: you can redistribute it and/or modify it under
 * the terms of the GNU General Public License v3.0. You should have received a
 * copy of the GNU General Public License along with this program. If not, see
 * <http://www.gnu.org/licenses/>.
 */

#ifndef _FNORDMETRIC_SERIES_H
#define _FNORDMETRIC_SERIES_H
#include <stdlib.h>
+6 −2
Original line number Diff line number Diff line
/**
 * This file is part of the "FnordMetric" project
 *   Copyright (c) 2014 Paul Asmuth, Google Inc.
 *   Copyright (c) 2011-2014 Paul Asmuth, Google Inc.
 *
 * Licensed under the MIT license (see LICENSE).
 * FnordMetric is free software: you can redistribute it and/or modify it under
 * the terms of the GNU General Public License v3.0. You should have received a
 * copy of the GNU General Public License along with this program. If not, see
 * <http://www.gnu.org/licenses/>.
 */

#include <vector>
#include <string>
#include <fnordmetric/cli/cli.h>
Loading