-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Eduardo Silva <[email protected]>
- Loading branch information
Showing
13 changed files
with
1,368 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ | ||
|
||
/* CMetrics | ||
* ======== | ||
* Copyright 2024 The CMetrics Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
|
||
#ifndef CMT_ENCODE_CLOUDWATCH_EMF_H | ||
#define CMT_ENCODE_CLOUDWATCH_EMF_H | ||
|
||
#include <time.h> | ||
#include <cfl/cfl.h> | ||
#include <cmetrics/cmetrics.h> | ||
|
||
#define CMT_ENCODE_CLOUDWATCH_EMF_SUCCESS 0 | ||
#define CMT_ENCODE_CLOUDWATCH_EMF_INVALID_ARGUMENT_ERROR -1 | ||
#define CMT_ENCODE_CLOUDWATCH_EMF_CREATION_FAILED -2 | ||
#define CMT_ENCODE_CLOUDWATCH_EMF_INVALID_DATA_ERROR -4 | ||
|
||
/* Metric Unit */ | ||
#define CMT_EMF_UNIT_PERCENT "Percent" | ||
#define CMT_EMF_UNIT_BYTES "Bytes" | ||
#define CMT_EMF_UNIT_COUNTER "Counter" | ||
|
||
int cmt_encode_cloudwatch_emf_create(struct cmt *cmt, | ||
char **out_buf, size_t *out_size, | ||
int wrap_array); | ||
void cmt_encode_cloudwatch_emf_destroy(char *out_buf); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ | ||
|
||
/* CMetrics | ||
* ======== | ||
* Copyright 2021-2024 The CMetrics Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#ifndef CMT_FILTER_H | ||
#define CMT_FILTER_H | ||
|
||
#include <cmetrics/cmetrics.h> | ||
#include <cmetrics/cmt_cat.h> | ||
|
||
#define CMT_FILTER_EXCLUDE (1 << 1) | ||
#define CMT_FILTER_PREFIX (1 << 2) | ||
#define CMT_FILTER_SUBSTRING (1 << 3) | ||
#define CMT_FILTER_REGEX_SEARCH_LABELS (1 << 4) | ||
|
||
#define CMT_FILTER_SUCCESS 0 | ||
#define CMT_FILTER_INVALID_ARGUMENT -1 | ||
#define CMT_FILTER_INVALID_FLAGS -2 | ||
#define CMT_FILTER_FAILED_OPERATION -3 | ||
|
||
int cmt_filter(struct cmt *dst, struct cmt *src, | ||
const char *fqname, const char *label_key, | ||
void *compare_ctx, int (*compare)(void *compare_ctx, const char *str, size_t slen), | ||
int flags); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.