Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add log_path config option #37

Merged
merged 3 commits into from
May 3, 2023
Merged

Add log_path config option #37

merged 3 commits into from
May 3, 2023

Conversation

tombruijn
Copy link
Member

@tombruijn tombruijn commented May 3, 2023

Add log_path config option

Check if the specified path is writable or not, and if not, fall back on the system tmp dir.

It just prints the warning and doesn't log it. We don't have an internal logger yet, see issue #34. It will also need to log it eventually.

While discussing this implementation, we decided we want to refactor this so there's a Config class that handles all the function calls, so that we don't need to call validate manually this way in the future. See issue #36. So I'm leaving a proper validation "state" in the Config for that issue.

[skip changeset] Part of #16

Fetch tmp dir in a cross platform way

Use the gettempdir method to fetch the system tmp dir. This won't work on macOS the way we want to, because it will create a new tmp dir every time and we want it to point to /tmp.

@tombruijn tombruijn added the chore label May 3, 2023
@tombruijn tombruijn self-assigned this May 3, 2023
@tombruijn tombruijn force-pushed the log_path-option branch 2 times, most recently from 4b3693c to 7035e48 Compare May 3, 2023 09:25
src/appsignal/config.py Outdated Show resolved Hide resolved
src/appsignal/config.py Outdated Show resolved Hide resolved
src/appsignal/config.py Outdated Show resolved Hide resolved
src/appsignal/config.py Show resolved Hide resolved
src/appsignal/config.py Show resolved Hide resolved
@tombruijn tombruijn changed the base branch from ca_file_path-option to main May 3, 2023 14:39
Check if the specified path is writable or not, and if not, fall back on
the system tmp dir.

It just prints the warning and doesn't log it. We don't have an internal
logger yet, see issue #34. It will also need to log it eventually.

While discussing this implementation, we decided we want to refactor
this so there's a Config class that handles all the function calls, so
that we don't need to call `validate` manually this way in the future.
See issue #36. So I'm leaving a proper validation "state" in the Config
for that issue.

[skip changeset]
Part of #16
Use the `gettempdir` method to fetch the system tmp dir. This won't work
on macOS the way we want to, because it will create a new tmp dir every
time and we want it to point to `/tmp`.
Make sure we always write the appsignal.log filename. There could be a
scenario that if someone specified a filename like `test.log` in the
`log_path` option, it would turn out something like:
`/path/to/test.logappsignal.log`.

Update code to use path.join, rather than my own string join solution.
Probably works better cross platform.
@tombruijn tombruijn requested a review from unflxw May 3, 2023 15:05
@tombruijn tombruijn merged commit f116001 into main May 3, 2023
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants